最新文章列表

某个时间增加/减去N天之后的时间--JS方法

//date加上num天数之后等到的时间;date格式:YYYY-MM-DD function dateAddNumDays(date,num) { var dates = date.split("-"); if(dates.length!=3) { alert("时间格式错误,请确认!"); return ; } var ...
llh13610 评论(0) 有1430人浏览 2012-02-13 16:23

在Titanium中函数定义的性能

在JavaScript中定义函数有三种方法: Function Declaration 定义式 Function Expression 匿名式 Function Constructor 构造函数式 // Function Declaration function testFunc() { return void(0); } // Function Expression ...
rensanning 评论(0) 有1767人浏览 2012-02-01 10:08

Sqlserver 函数/事务/存储过程

--聚合函数use pubsgoselect avg(distinct price)  --算平均数from titleswhere type='business'go use pubs
greatwqs 评论(0) 有1943人浏览 2012-01-13 11:11

Struts FreeMaker result type

In this example we are going to see how we can use FreeMaker as the view technology. Freemaker is a popular templating engine that is used to generate output using predefined templates. Let us create ...
qiaolevip 评论(0) 有1062人浏览 2012-01-05 11:36

MySQL String Functions

Name Description ASCII() Return numeric value of left-most character BIN() Return a string representation of the argument BIT_LENGTH() Return length of argument in bits CHAR_LENGTH() Return numbe ...
qiaolevip 评论(0) 有1672人浏览 2012-01-05 11:36

MySQL Numeric Functions

Name Description ABS() Returns the absolute value of numeric expression. ACOS() Returns the arccosine of numeric expression. Returns NULL if the value is not in the range -1 to 1. ASIN() Returns t ...
qiaolevip 评论(0) 有1466人浏览 2012-01-05 11:36

Struts redirect result type

<action name="hello" class="com.tutorialspoint.struts2.HelloWorldAction" method="execute"> <result name="success" type="redirect&quo ...
qiaolevip 评论(0) 有1183人浏览 2012-01-04 14:47

Struts2 Framework Interceptors

Maps exceptions that are thrown from an action to a result, allowing automatic exception handling via redirection. 8 fileUpload Facilitates easy file uploading. 9 i18n Keeps track of the select ...
qiaolevip 评论(0) 有1160人浏览 2012-01-04 14:47

Struts 2 File Uploads

Create view files: Let us start with creating our view which will be required to browse and upload a selected file. So let us create a index.jsp with plain HTML upload form that allows the user to upl ...
qiaolevip 评论(0) 有1712人浏览 2012-01-04 14:47

MySQL Date and Time Functions

Name Description ADDDATE() Add dates ADDTIME() Add time CONVERT_TZ() Convert from one timezone to another CURDATE() Return the current date CURRENT_DATE(), CURRENT_DATE Synonyms for CURDATE() C ...
qiaolevip 评论(0) 有2552人浏览 2011-12-31 13:50

MySQL CONCAT Function

mysql> SELECT CONCAT('FIRST ', 'SECOND'); +----------------------------+ | CONCAT('FIRST ', 'SECOND') | +----------------------------+ | FIRST SECOND | +------------------------ ...
qiaolevip 评论(0) 有1448人浏览 2011-12-31 13:50

php 工作中写的一些公用function

在项目中经常用到的一些公共方法。 一个好的程序员 要学会去收集一些公共类库, function get_client_ip() { if(getenv("HTTP_CLIENT_IP")) { $onlineIP = getenv("HTTP_CLIENT_IP"); } elseif(getenv("HTTP_X_FORWARD ...
zxl7049 评论(0) 有1208人浏览 2011-12-29 17:40

JS与当前系统日期时间比较大小

//输入时间早于当前系统时间 function smallerThanNow(time){ var myDate = new Date(); //2012年12月30日 13:13:00 var now = myDate.toLocaleDateString()+" "+myDate.toLocaleTimeString(); //2012-12-30 13:1 ...
iszhao 评论(0) 有5066人浏览 2011-12-20 23:49

jstl fn 复合使用

<span class="search_title">发布时间:</span> <input type="text" name="feeds.datetime" class="input" readonly=" ...
qiaolevip 评论(0) 有1074人浏览 2011-12-15 17:32

Javascript设计模式之:自我重写的function

我们在一个闭包计数器的时候通常写成: var count = (function (){ var c = 1; return function(){ return c++; } })(); 有没有其他方法实现同样的功能?答案是有的,那就是自我重写的function: function count(){ var c = 1; count = funct ...
libmw 评论(0) 有857人浏览 2011-12-15 09:44

javascript函数中变量的范围

var first = 'hi there'; var first = (function() { console.log("first", first); // undefined var first = "hello world"; })(); //相当于 var first = 'hi there'; var fir ...
caniggia1986 评论(0) 有1140人浏览 2011-12-08 11:17

几个常用的JS正则表达式

几个常用的JS正则表达式 //校验是否全由数字组成 function isDigit(s) { var patrn=/^[0-9]{1,20}$/; if (!patrn.exec(s)) return false return true } //校验登录名:只能输入5-20个以字母开头、可带数字、“_”、“.”的字串 function isRegisterUserName(s) ...
祖祖cool 评论(3) 有1549人浏览 2011-12-06 09:12

javascript 调用函数方式 - 摘自js语言精粹

如标题, 做个笔记. javascript 调用函数 调用一个函数将暂停当年函数的执行, 传递控制权和参数给新函数. 除了声明时定义的形式参数, 每个函数接收两个附加的参数: this 和 arguments. 参数 this 在面向对对象编程中非常重要, 它的值取决于调用的模式. 在 Javascript 中一共有四种调用模式: 方法调用模式; 函数调用模式; 构造器调用模式; apply ...
PatrickZhong 评论(0) 有3813人浏览 2011-12-01 17:29

js 去除数据重复数据

如题: ------------- Array.prototype.distinct = function() { var ret = []; for (var i = 0; i < this.length; i++) { for (var j = i+1; j < this.length;) { ...
至今而后 评论(0) 有1097人浏览 2011-11-29 16:10

身份证号码校验

第一个校验来自于学长: function isIdCardNo(num) { // 身份证号码为15位或者18位,15位时全为数字,18位前17位为数字,最后一位是校验位,可能为数字或字符X。            num = num.toUpperCase();     // 校验位按照ISO 7064:1983.MOD 11-2的规定生成,X可以认为是数字10。     if (!(/(^ ...
花飘零_坚强的小石头 评论(0) 有878人浏览 2011-11-25 14:40

最近博客热门TAG

Java(141747) C(73651) C++(68608) SQL(64571) C#(59609) XML(59133) HTML(59043) JavaScript(54918) .net(54785) Web(54513) 工作(54116) Linux(50906) Oracle(49876) 应用服务器(43288) Spring(40812) 编程(39454) Windows(39381) JSP(37542) MySQL(37268) 数据结构(36423)

博客人气排行榜

    博客电子书下载排行

      >>浏览更多下载

      相关资讯

      相关讨论

      Global site tag (gtag.js) - Google Analytics