我正在为我的表单使用jQuery工具(http://flowplayer.org/tools/demos/index.html)验证器,并想知道如何验证下拉列表和单选按钮?
有人有实施它的经验吗?
答案 0 :(得分:1)
只需按照以下方式添加:
<script type="text/javascript">
$(document).ready(function(){
// initialize validator and supply the onBeforeValidate event in configuration
$("#GetAQuote").validator({
position: 'top left',
offset: [-5, 25],
message: '<div><em/><img src="images/form-error.gif" style="float:right;"/></div>'
// em element is the arrow
});
$.tools.validator.fn("select[required=required]", function(input, value) {
// If the first item in the list is selected return FALSE
return !input[0].options[0].selected;
});
$("#GetAQuote").bind("onFail", function(e, errors) {
// we are only doing stuff when the form is submitted
if (e.originalEvent.type == 'submit') {
// loop through Error objects and add the border color
$.each(errors, function() {
var input = this.input;
input.css({borderColor: '#e6a200'}).focus(function() {
input.css({borderColor: '#75a9cc'});
});
});
}
});
});
</script>
答案 1 :(得分:0)
在文档中,它说你也可以使用SELECT元素的required =“required”属性,但它也不适用于我。 我选择使用自定义验证器功能。希望这对你有用。这是非常基本的,它缺少一些其他考虑因素,以使其更灵活。
$.tools.validator.fn("select[required=required]", function(input, value) {
// If the first item in the list is selected return FALSE
return !input[0].options[0].selected;
});