jquery.validate怎么不起作用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery.validate怎么不起作用相关的知识,希望对你有一定的参考价值。
为什么提交的时候jquery.validate没有提示 用户名不能为空
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>set your title</title>
<link href="css/jquery_validate.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery_validate.js"></script>
</head>
<body>
<form action="aa.html" name="form">
<input type="text" require="true" datatype="require" msg=" 不能为空 " />
<input type="submit" value=" 提交 " />
</form>
<script>
$("form").checkForm(); //表单验证
</script>
</body>
</html>
<body>
<form action="aa.html" name="form" id="form">
<input type="text" require="true" datatype="require" msg=" 不能为空 " />
<input type="submit" value=" 提交 " />
</form>
<script>
$("#form").validate(); //表单验证
if(!$("#form").valid().)
alert("请正确填写表单!");
</script>
</body>
</html> 参考技术A 似乎jquery验证控件的验证方法不叫checkForm(),不知道你下载的是哪个? 参考技术B 还可以这么用吗? 建议你看下自带的例子
怎么在asp.net mvc项目的script文件夹添加jquery.validate.min.js和jquery.validate.unobtrusive.min.js
1:首先在script 文件家里面添加这两个js2:其次在html页面添加脚本的引用
例如:
<html>
<body>
<form>
<input type=\'text\' />
</form>
<script src=\'../script/jquery.validate.min.js\'></script>
<script src=\'../script/jaquery.validate.unobtrusive.min.js\'></script>
</body>
</html>
Good Luck! 希望能够帮助到你!追问
请问是否有哪个安装包里面包括这两个文件,就是在Package Manage Console里面输入命令直接添加
参考技术A 复制进去就好咯。还要怎么的追问我的意思是哪个安装包里面有这两个文件,就像添加bootstrap文件一样
以上是关于jquery.validate怎么不起作用的主要内容,如果未能解决你的问题,请参考以下文章
我在表单上使用 jquery .validate() 后 jQuery .submit() 不起作用
onkeyup 在针对 tinymce 的 jQuery Validate 中不起作用