摘要: 本文整理了几款高质量的jQuery表单验证插件,可以节约web开发者的时间。希望对你有帮助!列表如下:1)A Jquery Inline Form Validation2)Form Validation Using Jquery3)Using Jquery and Ajax to validate Form4)WordPress Jquery Contact Form5)How to Validate Forms in both sides using PHP and jQuery6)Adding Form Validation to WordPress7)Advanced Form Vali 阅读全文
posted @ 2011-09-06 12:53 苏格兰威士忌找不到了 阅读(553) 评论(0) 推荐(0) 编辑
摘要: <script language=javascript> //CharMode函数//source:www.web2bar.cn //测试某个字符是属于哪一类. function CharMode(iN){ if (iN>=48 && iN <=57) //数字 return 1; if (iN>=65 && iN <=90) //大写字母 return 2; if (iN>=97 && iN <=122) //小写 return 4; else return 8; //特殊字符 } //bitTo 阅读全文
posted @ 2011-09-06 11:47 苏格兰威士忌找不到了 阅读(304) 评论(0) 推荐(0) 编辑