下拉选项列表使用bvalidator进行验证

时间:2012-07-17 23:49:56

标签: jquery forms validation

我在我的本地网站上使用了bValidator插件,而且我坚持使用表单验证的最后一部分。

我正在尝试验证下拉列表选项,但不知何故它不起作用。可能有一种解决方法可以使其工作。我非常感谢你的帮助。

http://jsfiddle.net/2CLZj/


<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"/>

由于

1 个答案:

答案 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>

示例: http://jsfiddle.net/rEF6h/