jQuery 插件validationEngine 的钩子未执行
我正在尝试使用 validationEngine 的钩子 但无法使其工作。
通过阅读手册,以下代码应该在模糊每个不验证的字段后显示一个警报框...但是警报框没有显示...
$('#myform').validationEngine();
$('#myform').bind('jqv.field.result', function(event, field, errorFound, prompText) {
alert('foo');
});
请注意,正常验证效果很好,所以jQuery 和validationEngine 工作正常。
I'm trying to use validationEngine's hooks but can't get it working.
From reading the manual, the following code should show an alert box after blurring every field that does not validate... but the alert box is not showing...
$('#myform').validationEngine();
$('#myform').bind('jqv.field.result', function(event, field, errorFound, prompText) {
alert('foo');
});
Note that the normal validation works great, so jQuery and validationEngine work fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ajax 查询无法正确处理触发自定义事件。有一个补丁 https://github.com/posabsolute/jQuery-Validation-Engine /拉/170
ajax queries handle incorrectly with trigger custom event. there is a patch https://github.com/posabsolute/jQuery-Validation-Engine/pull/170
Bug 已被创建者接受: http://github.com/posabsolute/jQuery-验证引擎/issues/84
Bug has been accepted by creator: http://github.com/posabsolute/jQuery-Validation-Engine/issues/84