需要jquery验证

时间:2009-11-01 13:10:17

标签: jquery validation

我尝试了这个,但似乎没有用,但任何想法为什么不呢?

我通过这种方式调用验证: 。$( “#aspnetForm”)来验证()形式();

无论“其他”是否已经过检查,

和“详细信息”字段都是必需的....

我从http://jquery.bassistance.de/api-browser/plugins.html#jQueryvalidatormethodsrequiredStringElementBooleanStringFunction

中取了示例

10X !!

2 个答案:

答案 0 :(得分:2)

确保包含所有必需的脚本:jquery.jsjquery.validate.jsjquery.metadata.js(如果您使用类元数据来定义验证规则)?这是一个示例:

<html>
<head>
    <title>Test</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.validate/1.5.5/jquery.validate.min.js"></script>
    <script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/validate/lib/jquery.metadata.js"></script>
    <script type="text/javascript">
    $(function() {
        $('#aspnetForm').validate();

        $('a').click(function() {
            alert($('#aspnetForm').validate().form());
        return false;
        });
    });
    </script>
</head>
<body>

<form id="aspnetForm" action="#"> 
    <input name="other" type="radio" /> 
    <input name="details" type="text" class="{required:true}" />
    <input type="submit" value="OK" />
</form>

<a href="#">Validate</a>

</body>
</html>

答案 1 :(得分:0)

答案:

<input id="other" type="checkbox" />
  <br/>
  <input  class="{required:'#other:checked', messages:{required:'if you check it then fill it'}}"  />

代码有效! 无论如何10X Darin Dimitrov ......