我第一次使用jquery validate插件。我处于一种情况,我有一个有三个选项的选择框。我需要做两件事:
因此...
<select id="selectBox">
<option value selected></option>
<option value="1">1</option>
<option value="2">2</option>
<option Value="3">3</option>
</select>
Coord 1: <input type="text" name="coord1"><br>
Coord 2: <input type="text" name="coord2"><br>
Coord 3: <input type="text" name="coord3"><br>
这如何将自定义规则添加到验证器?
提前致谢...
答案 0 :(得分:1)
试
If you need starting itself
// $('input[type=text]:eq(0)').prop('required', true);
$("#selectBox").change(function () {
var index=this.value-1;
$('input[type=text]:gt(0)').prop('required', false);
// $('input[type=text]:eq(0)').prop('required', true);
$('input[type=text]:eq('+index+')').prop('required', true);
});