我使用validate.jquery.js:正常工作。 但是,当我加入chosen.js,在选择下拉列表验证不工作了。
下面是我使用的JS http://pastebin.com/S9AaxdEN
这里是我的选择形式:
<select name="category" id="category" placeholder="" class="{validate:{required:true}}">
<option value=""><?php echo lang('category_choice'); ?></option>
<option value="vtt">VTT</option>
<option value="autre">Autre type de vélo</option>
</select>
不知道为什么chosen.js禁用验证,任何想法?
您可以通过添加类“chzn,做”不走财产“忽视”到“validate.settings”解决这个问题:
var settings = $.data($('#myform')[0], 'validator').settings;
settings.ignore += ':not(.chzn-done)';
例
HTML:
<form method="post" id="form1" action="">
<fieldset>
<legend>Login Form</legend>
<div>
<label>datos</label>
<select name="data-select" title="data-select is required" class="chzn-select {required:true}" style="width:150px;">
<option></option>
<option value="1">uno</option>
<option value="2">dos</option>
</select>
</div>
<div>
<label for="phone">Phone</label>
<input id="phone" name="phone" class="some styles {required:true,number:true, rangelength:[2,8]}" />
</div>
<div>
<label for="email">Email</label>
<input id="email" name="email" class="{required:true,email:true}">
</div>
<div class="error"></div>
<div>
<input type="submit" value="enviar datos"/>
</div>
</fieldset>
</form>
JS:
$(function() {
var $form = $("#form1");
$(".chzn-select").chosen({no_results_text: "No results matched"});
$form.validate({
errorLabelContainer: $("#form1 div.error"),
wrapper: 'div',
});
var settings = $.data($form[0], 'validator').settings;
settings.ignore += ':not(.chzn-done)';
$('form').each(function(i, el){
var settings = $.data(this, 'validator').settings;
settings.ignore += ':not(.chzn-done)';
});
});
我只想补充一点,对于错误的位置,它会追加旁边的隐藏元素,因此您可能需要使用您的验证功能,下面的代码作为一个选项参数来改变位置
errorPlacement: function(error,element) {
if (element.is(":hidden")) {
//console.log(element.next().parent());
element.next().parent().append(error);
}
else {
error.insertAfter(element);
}
}
这不仅解决了不能够看到验证的问题,但它也将适用标准的“输入验证错误”类风格的选择chosen.js。
有两种情况下,它需要两个应用窗体时提交,并在选择的变化。 请参见下面的代码三个部分。
- 第一设置形式的验证来验证隐藏元素。
- 第二检查上提交所选的验证。
- 第三检查上的改变所选择的验证。
设置表单验证,以显示隐藏:
var validator = $("#FormID").data('validator');
validator.settings.ignore = ":hidden:not(select)";
在表格检查提交:
$('#FormID').on('submit', function () {
var ChosenDropDowns = $('.chzn-done');
ChosenDropDowns.each(function (index) {
var ID = $(this).attr("id");
if (!$(this).valid())
{
$("#" + ID + "_chzn a").addClass("input-validation-error");
}
else
{
$("#" + ID + "_chzn a").removeClass("input-validation-error");
}
});
});
在特定的变化检查:
$(".chzn-select").chosen().change(function () {
var ID = $(this).attr("id");
if (!$(this).valid()) {
$("#" + ID + "_chzn a").addClass("input-validation-error");
}
else {
$("#" + ID + "_chzn a").removeClass("input-validation-error");
}
});
还有的形式提交后验证选择的选择菜单的问题。 如果您在菜单上验证错误,然后更改菜单为有效的验证错误不会消失。 形式仍然可以提交,但考虑到有一个验证错误的表现不是很明显。
这里有一个例子来修复它使用invalidHandler
和valid()
// We'll use this flag so we don't have to validate fields before
// the form has been submitted.
var validatingForm = false;
// This line before validate() is called allows
// chosen menus to be validated
$.validator.setDefaults({ ignore: ":hidden:not(select)" });
$("#yourForm").validate({
invalidHandler: function() {
// Now we can validate the fields onChange
validateForm = true;
},
rules: {
// Probably your validation rules here
}
});
// Now set an onChange event for the chosen menu
$("yourChosenMenu").change(function(){
// Check that we've tried to submit the form
if(validateForm) {
// We tried to submit the form, re-validate on change
$("yourChosenMenu").valid();
}
});