Jquery验证单选按钮

时间:2011-07-12 19:38:50

标签: jquery forms jquery-validate

我想在这里验证我的单选按钮是我的代码:

<form id="#FormSend">
    <fieldset>
        <input class="required" name="myoptions[]" type="radio" value="label 1" /> 
        <label> Label 1</label>
    </fieldset>
    <fieldset>
        <input class="required" name="myoptions[]" type="radio" value="label 2" /> 
        <label> Label 2</label>
    </fieldset>
</form>

至于我的标题,我有这个:

$(document).ready(function(){

    $("#FormSend").validate({
        rules: {
            'myoptions[]':{required:true}
        }
    });
});

它根本没有验证它...请帮助

2 个答案:

答案 0 :(得分:0)

这可能是一些事情:

  • #FormSend在哪里?是id的{​​{1}}吗?
  • 您是否包含jQuery和验证脚本?并且jQuery首先被加载了吗?

答案 1 :(得分:0)

根据您的浏览器,使用javascript控制台检查javascript错误。 ie9和ie8 - 按f12进入开发人员工具栏,单击脚本,然后单击开始调试。刷新页面,您将看到任何javascript错误。

Firefox - 下载firebug

Chrome - (windows)按Ctrl + Shift + J,单击“脚本”

Safari - 它稍微复杂一点 - http://mactips.info/2010/07/use-safari-5s-web-inspector