【发布时间】:2016-07-15 07:34:03
【问题描述】:
我尝试运行作者提供的代码以使 selected.js 与 jquery 验证引擎一起工作
Here是作者代码
我使用相同的代码进行测试,但它不起作用
这是我的代码
jQuery(document).ready(function() {
// binds form submission and fields to the validation engine
jQuery("#formID").validationEngine({
prettySelect : true,
useSuffix: "_chzn"
//promptPosition : "bottomLeft"
});
$("#country").chosen({
allow_single_deselect : true
});
});
Here是我的小提琴
我不知道我的代码有什么问题?
【问题讨论】:
-
您是否在本地尝试过并得到同样的错误? stackoverflow.com/questions/18952320/…
标签: jquery jquery-chosen jquery-validation-engine