我在我的本地网站上使用了bValidator插件,而且我坚持使用表单验证的最后一部分。
我正在尝试验证下拉列表选项,但不知何故它不起作用。可能有一种解决方法可以使其工作。我非常感谢你的帮助。
<br /><br /><br />
<input type="text" data-bvalidator="required" data-bvalidator-msg="message" name="some" id="some" />
<br />
<br />
<select id="branche_select" data-bvalidator="required">
<option value="selecteer">Select your branche</option>
<option value="Marketing">Branche A</option>
<option value="Marketing">Branche B</option>
</select>
<input type="submit" value="submit" name="submit"/>
由于
答案 0 :(得分:1)
将默认选项的value
设置为""
:
<select id="branche_select" data-bvalidator="required">
<option value="">Select your branche</option>
<option value="Marketing">Branche A</option>
<option value="Marketing">Branche B</option>
</select>