validate验证jquery chosen相关问题
Posted 秦悦空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了validate验证jquery chosen相关问题相关的知识,希望对你有一定的参考价值。
validate对jquery chosen-select无法验证,需要在validate加入
ignore: ":hidden:not(select)"
加入后可以成功校验,但是错误信息显示在select框上面
解决此问题是加入
errorPlacement
$("#form-add").validate({ ignore: ":hidden:not(select)", rules: { id: { required: true } }, messages: { id: { required: "请选择关联的数据字典" } }, errorPlacement:function (error, element) { error.appendTo(element.parent()); } });
加上之后,错误信息显示在下面
想选择成功后 立刻清除错误信息,可以加入change事件
$(function() { $(".chosen-select").chosen({width: \'95%\',search_contains: true,no_results_text: "无对应数据..."}); $(".chosen-select").change(function () { $(this).valid(); }) });
以上是关于validate验证jquery chosen相关问题的主要内容,如果未能解决你的问题,请参考以下文章
jQuery常用插件与jQuery使用validation插件实现表单验证实例
Jquery Validate 相关参数及常用的自定义验证规则