单选按钮验证与 jQuery 验证 名称的输入



我想通过jquery验证插件验证单选按钮,但问题是jquery验证插件使用名称作为验证规则,但我需要类而不是名称

这是我的代码

<input type="radio" name="brand[]" value="blue"> Blue<br />
<input type="radio" name="brand[]" value="red"> Red<br />
<input type="radio" name="brand[]" value="green"> Green<br />
<label for="brand[]" class=brand style="display:none;">Please choose one.</label>

和我的j查询

rules: {
'brand[]':{ required:true }
}

它与名称属性一起工作正常,但我想使用类而不是名称。

您可以使用 .rules("add", options( 基于该选择器添加规则

<input type="radio" name="brand[]" value="blue" class="brand"> Blue<br />
<input type="radio" name="brand[]" value="red" class="brand"> Red<br />
<input type="radio" name="brand[]" value="green" class="brand"> Green<br />
$('.brand').rules('add',{
required : true,
});

相关内容

  • 没有找到相关文章

最新更新