我一直在使用bootstrap multiform,并使用jQuery验证器,它非常易于使用,并且有很好的文档,但我无法找出一个问题。我想要求该字段的特定答案在选择,下拉列表中有效。 E.G:如果我有“是”,“否”,“可能”作为选项,我想要求用户选择“是”,因为没有错误。我在下面的代码中包含了一些代码,谢谢。
<div class="myclass">
<div class="form-group">
<label for="sel3">question1</label>
<select class="form-control" id="sel3" name="Has1">
<option value="" disabled selected style="display: none;">Select Answer</option>
<option>Yes</option>
<option>No</option>
</select>
<br>
<label for="sel5">question 2</label>
<select class="form-control" id="sel5" name="Has2">
<option value="" disabled selected style="display: none;">Select Year</option>
<option>2012</option>
<option>2013</option>
<option>2014</option>
<option>2015</option>
</select>
</div>
</div>
$('.myform').validate({ // initialize plugin
// ignore:":not(:visible)",
rules: {
Surgery_Year: {
required: true,
number: true,
},
Has_Surgery: {
required: true,
number: false,
//something to make Yes The only valid option.
},