83510191 2016-06-11
jquery validate为表单提供强大的验证功能,并且提供强大的定制选项
具体参考:http://www.runoob.com/jquery/jquery-plugin-validate.html
http://www.cnblogs.com/datoubaba/archive/2012/06/06/2538873.html
下面我写一下入门的示例吧
注意以下情况validate不启作用:
1.页面使用全局单击事件,validate不启作用
//关闭开始按钮弹出的菜单 closeStartMenu = function() { $("body").click(function(event){ event.preventDefault();//这里有问题 $('#start_item').hide(); }); }
2.form外面包裹table,validate不启作用
<div id="createFolderForm"> <!--table有问题--> <table> <form method="post" action=""> <tr> <th>名称</th> <td><input type="text" name="folderName" style="height: 22px;"/></td> </tr> </form> </table> </div>