0

我正在为我的表单使用 jQuery 工具 (http://flowplayer.org/tools/demos/index.html) 验证器,并且想知道如何验证下拉菜单和单选按钮?

有人有实施它的经验吗?

4

2 回答 2

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>
于 2012-07-19T16:11:34.527 回答
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;
});
于 2011-01-13T18:52:16.167 回答