API
//用户名格式
username:{
number:true, //数字
digits:true //非负整数
},
"confirm-password":{
equalTo:"#password" //确认密码
}
//用户名格式
username:{
number:true, //数字
digits:true //非负整数
},
"confirm-password":{
equalTo:"#password" //确认密码
}
2016-04-02
//用户名格式
username:{email:true,
url:true,
date:true, //Date.parse 所识别
dateISO:true //yyyy-/mm-/dd
}
username:{email:true,
url:true,
date:true, //Date.parse 所识别
dateISO:true //yyyy-/mm-/dd
}
2016-04-02
remote:{ //远程校验
url:"",
data:{
loginTime:function(){
return +new Date; //字符改成数字 getTime()
}
remote:"用户不存在"
url:"",
data:{
loginTime:function(){
return +new Date; //字符改成数字 getTime()
}
remote:"用户不存在"
2016-04-02
$(document).ready(function(){
$(#formSet).validate({
rules:{
username:{
required:true,
minlength:2,
maxlength:10
},
password:{
required:true,
minlength:2,
maxlength:10
}
},
$(#formSet).validate({
rules:{
username:{
required:true,
minlength:2,
maxlength:10
},
password:{
required:true,
minlength:2,
maxlength:10
}
},
2016-04-02
这两个是IT术语。
BUG是指程序错误或漏洞,就是程序员编程时由于某些原因,因程序语句写错或考虑不周而未能实现想要的功能,甚至不能运行程序。最常见的可能就是某些游戏,由于程序没编好,别人就可能会利用其漏洞篡改游戏数据。
DEBUG就是指程序员对编好的程序进行漏洞的排查,尽量消除错误或漏洞。一般都是用专业的工具进行。
BUG是指程序错误或漏洞,就是程序员编程时由于某些原因,因程序语句写错或考虑不周而未能实现想要的功能,甚至不能运行程序。最常见的可能就是某些游戏,由于程序没编好,别人就可能会利用其漏洞篡改游戏数据。
DEBUG就是指程序员对编好的程序进行漏洞的排查,尽量消除错误或漏洞。一般都是用专业的工具进行。
2016-03-25