80

我有一些<select>使用所选插件的输入,我想在客户端验证为“必需”。由于“选择”隐藏了实际的选择元素并创建了一个带有 div 和 span 的小部件,因此原生 HTML5 验证似乎无法正常工作。表单不会提交(这很好),但没有显示错误消息,因此用户不知道出了什么问题(这不好)。

我已经求助于 jQuery 验证插件(我最终还是打算使用它),但到目前为止还没有任何运气。这是我的测试用例

<form>
    <label>Name: <input name="test1" required></label>
    <label>Favorite Color:
        <select name="test2" required>
            <option value=""></option>
            <option value="red">Red</option>
            <option value="blue">Blue</option>
            <option value="green">Green</option>
        </select>
    </label>
    <input type="submit">
</form>
$(document).ready(function(){
    $('select').chosen();
    $('form').validate();
});

这是让select空值通过,而不验证或显示错误消息。当我注释掉该chosen()行时,它工作正常。

如何chosen()使用 jQuery 验证插件验证输入,并显示无效输入的错误消息?

4

18 回答 18

127

jQuery validate 忽略了隐藏元素,并且由于 Chosen 插件将visibility:hidden属性添加到选择中,请尝试:

$.validator.setDefaults({ ignore: ":hidden:not(select)" }) //for all select

或者

$.validator.setDefaults({ ignore: ":hidden:not(.chosen-select)" }) //for all select having class .chosen-select

validate()在函数之前添加这一行。这对我来说可以。

于 2013-06-26T11:55:39.213 回答
19

jQuery 验证不会选择隐藏的元素,但您可以强制它验证单个元素。有点hack,但以下将起作用:

$('form').on('submit', function(e) {
    if(!$('[name="test2"]').valid()) {
        e.preventDefault();
    }
});  

要仅选择“选择”元素,您可以使用$('.chzn-done')

于 2012-06-27T18:54:38.340 回答
5

在我的。

我的表单有“验证”类,每个输入元素都有“必需”类 html 代码:

<form id="ProdukProdukTambahForm" class="validate form-horizontal" accept-charset="utf-8" method="post" enctype="multipart/form-data" action="/produk-review/produk/produkTambah" novalidate="novalidate">
     <div class="control-group">
        <label class="control-label" for="sku">SKU</label>
        <div class="controls">
           <input id="sku" class="required span6" type="text" name="sku">
        </div>
     </div>
     <div class="control-group">
        <label for="supplier" class="control-label">Supplier</label>
        <div class="controls">
            <select name="supplier" id="supplier" class='cho span6 {required:true} '>                                           
                <option value=''>-- PILIH --</option>
                <?php
                foreach ($result as $res)
                    {
                    echo '<option value="'.$res['tbl_suppliers']['kode_supplier'].'">'.$res['tbl_suppliers']['nama_supplier'].'</option>';
                    }
                ?>
            </select>
         </div>
      </div>
</form>

和用于选择与 jquery 验证的 javascript 代码

$(document).ready(function() {
    // - validation
    if($('.validate').length > 0){
        $('.validate').validate({
            errorPlacement:function(error, element){
                    element.parents('.controls').append(error);
            },
            highlight: function(label) {
                $(label).closest('.control-group').removeClass('error success').addClass('error');
            },
            success: function(label) {
                label.addClass('valid').closest('.control-group').removeClass('error success').addClass('success');
            },
            //validate choosen select (select with search)
            ignore: ":hidden:not(select)"
        });
    }
    // - chosen, add the text if no result matched
    if($('.cho').length > 0){
        $(".cho").chosen({no_results_text: "No results matched"});
    }
});

注意:如果输入值为空,类错误将附加到父'div'

于 2014-07-27T08:00:53.053 回答
3

//您可以通过使用另一种方式来隐藏您选择的元素来解决此问题。例如....

$(document).ready(function() {
 $.validator.addMethod(     //adding a method to validate select box//
            "chosen",
            function(value, element) {
                return (value == null ? false : (value.length == 0 ? false : true))
            },
            "please select an option"//custom message
            );

    $("form").validate({
        rules: {
            test2: {
                chosen: true
            }
        }
    });
    $("[name='test2']").css("position", "absolute").css("z-index",   "-9999").chosen().show();

    //validation.....
    $("form").submit(function()
    {
        if ($(this).valid())
        {alert("valid");
    //some code here 
        }
        return false;

    });
});
于 2013-01-24T07:02:34.770 回答
2

为了使用 selected.js,我不得不放在$.validator.setDefaults({ ignore: ":hidden:not(.chosen-select)" })
外面。$(document).ready(function())

https://stackoverflow.com/a/10063394/4063622

于 2016-11-17T16:01:16.063 回答
2

这个简单的 CSS 规则适用于 joomla 3 的 selected 实现

Chosen 将类无效添加到隐藏的选择输入,因此使用它来定位选定的选择框

.invalid, .invalid + div.chzn-container a {
    border-color: red !important;
}
于 2016-05-25T13:12:10.983 回答
1

You might also running into trouble that error message is displayed before Chosen dropdownlist. I found out the solution to resolve this issue and paste my code here to share with you

HTML:

<label class="col-sm-3">Select sponsor level *</label>
<asp:DropDownList ID="ddlSponsorLevel" runat="server" CssClass="col-sm-4 required" ClientIDmode="Static" />
<label class="error" id="ddlSponsorLevel-error" for="ddlSponsorLevel"></label>

Javascript:

if (!$('#ddlSponsorLevel').valid()) {
       $('#ddlSponsorLevel-error').text("You must choose a sponsor level");
            return false;
}

Jquery Validation actually added a hidden label html element. We can re-define this element with same ID on different place to overwrite original place.

于 2014-12-05T20:22:29.820 回答
1

我花了大约一天的时间来解决这个问题,但一点运气都没有!然后我查看了 Vtiger 使用的源代码,发现了黄金!即使他们使用的是旧版本,他们也有钥匙!你必须使用

data-validation-engine="validate[required]"

如果你不这样做,并且你有它,类是通过类传递的,用于选择的类被应用于选择的对象,它认为你选择的永远不会更新。如果您不将课程传递给所选的课程,这应该是一个问题,但是如果您这样做是唯一可行的方法。

这是选择 1.4.2 validationEngine 2.6.2 和 jquery 2.1.4

// binds form submission and fields to the validation engine
jQuery("#FORMNAME").validationEngine({
    prettySelect : true,
    useSuffix: "_chosen"
    //promptPosition : "bottomLeft"
});
于 2015-08-07T23:44:21.947 回答
1

@Anupal 让我走上了正确的道路,但不知何故我需要一个复杂的修复

可以.chosen考虑

javascript

$.validator.setDefaults({ ignore: ":hidden:not(.chosen)" })

或者你给你选择的任何其他名字。这是全局配置。考虑设置在顶层

为所选内容创建自定义规则

感谢BenG

html

<select id="field" name="field" class="chosen" data-rule-chosen-required="true">
    <option value="">Please select…&lt;/option>
</select>

javascript

同样,$.validator对象的全局配置。可以放在上一条命令旁边

$.validator.addMethod('chosen-required', function (value, element, requiredValue) {
    return requiredValue == false || element.value != '';
}, $.validator.messages.required);
于 2017-04-07T15:41:49.543 回答
0

You can also try this:

$('form').on('submit', function(event) {
    event.preventDefault();
    if($('form').valid() == true && $('.select-chosen').valid() == true){
        console.log("Valid form");
    } else {
        console.log("Invalid form");
    }
}); 

Remember to add .select-chosen class on each selects.

$('.select-chosen').valid() forces the validation for the hidden selects

http://jsfiddle.net/mrZF5/39/

于 2014-08-04T09:55:18.640 回答
0
jQuery("#formID").validationEngine({
     prettySelect : true,
     useSuffix: "_chzn"
});

jQuery-Validation-Engine/demoChosenLibrary

于 2014-01-18T21:40:22.763 回答
0

我认为这是更好的解决方案。

//trigger validation onchange
$('select').on('change', function() {
    $(this).valid();
});

$('form').validate({
    ignore: ':hidden', //still ignore Chosen selects
    submitHandler: function(form) { //all the fields except Chosen selects have already passed validation, so we manually validate the Chosen selects here            
        var $selects = $(form).find('select'),
            valid = true;
        if ($selects.length) {
            //validate selects
            $selects.each(function() {
                if (!$(this).valid()) {
                    valid = false;
                }
            });
        }
        //only submit the form if all fields have passed validation
        if (valid) {
            form.submit();
        }
    },
    invalidHandler: function(event, validator) { //one or more fields have failed validation, but the Chosen selects have not been validated yet
        var $selects = $(this).find('select');     
        if ($selects.length) {
            validator.showErrors(); //when manually validating elements, all the errors in the non-select fields disappear for some reason

            //validate selects
            $selects.each(function(index){
                validator.element(this);
            })
         }
    },
    //other options...
});

注意:您还需要更改errorPlacement回调以处理显示错误。如果您的错误消息在该字段旁边,您将需要使用.siblings('.errorMessageClassHere')(或其他方式,取决于 DOM)而不是.next('.errorMessageClassHere').

于 2014-01-10T20:00:03.180 回答
0

您可以对“选择”插件使用 jQuery 验证。对我来说工作得很好。

$('.chosen').chosen({
        allow_single_deselect: true
    });
    $.validator.setDefaults({ ignore: ":hidden:not(select)" });
        $('form').validate({
            highlight: function(element) {
                $(element).closest('.form-group').addClass('has-error');
        },
        unhighlight: function(element) {
            $(element).closest('.form-group').removeClass('has-error');
        },
        errorElement: 'span',
        errorClass: 'help-block text-danger',
        errorPlacement: function(error, element) {
            if(element.parent('.input-group').length) {
                error.insertAfter(element.parent());
            } else {
                error.insertAfter(element.parent());
            }
        }
    });
于 2019-03-19T10:37:24.493 回答
0

感谢这个答案https://stackoverflow.com/a/40310699/4700162我解决了这个问题:

在文件 Chosen.jquery.js 中,更改

this.form_field_jq.hide().after(this.container);

有了这个:

this.form_field_jq.css('position', 'absolute').css('opacity', 0).after(this.container);
于 2018-09-24T11:34:16.027 回答
0

我的表单包含有条件隐藏的字段,以防止隐藏的选定字段验证失败,我扩展了默认的忽略:隐藏进一步:

$.validator.setDefaults({ 
  ignore: ":hidden:not(.chosen-select + .chosen-container:visible)"  //for all select having class .chosen-select
    })

于 2016-06-13T14:06:24.130 回答
0

调用 selected() 后使用下面的 jquery 方法

$("#id").css("display":"").addClass("sr-only");

sr-only 是引导类

于 2020-06-28T05:03:55.270 回答
0

在 2018 年,我正在验证 jQuery validate 抱怨输入字段没有名称。此输入字段由 jQuery Chosen 插件附加。

在此处输入图像描述

使用 selected 时,此错误发生在其他任何事情之前。

于 2018-03-06T20:24:29.300 回答
0

我最终通过执行以下操作解决了它:

这是针对选择 v1.8.7 的:

  1. 打开 selected.js 并在第 199 行找到:

this.form_field_jq.hide().after(this.container),

  1. 将其替换为:

this.form_field_jq.addClass('chosen-master').after(this.container),

  1. 将这些 CSS 属性添加到该类:
.chosen-master {
  display: inline-block !important;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

参考:https ://stackoverflow.com/a/64491538/7353382

于 2020-10-22T22:49:48.750 回答