花式验证码 jquery - 放置事件
我正在尝试使用花式验证码的放置事件(http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin),但它永远不会触发。这是代码(网站没有任何更改:
$("#ajax-fc-circle").droppable({
drop: function(event, ui) {
$(".ajax-fc-" + rand).draggable("disable");
$("#" + options.formId).append("<input type=\"hidden\" style=\"display: none;\" name=\"captcha\" value=\"" + rand + "\">");
},
tolerance: 'touch'
});
};
放置事件永远不会被触发。有人有过使用花哨的验证码的经验吗?
I am trying to use the drop event of fancy captcha (http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin) but it never fires. This is the code (without any change from the website:
$("#ajax-fc-circle").droppable({
drop: function(event, ui) {
$(".ajax-fc-" + rand).draggable("disable");
$("#" + options.formId).append("<input type=\"hidden\" style=\"display: none;\" name=\"captcha\" value=\"" + rand + "\">");
},
tolerance: 'touch'
});
};
The drop event is never fired. Has anyone had any experience with fancy captcha?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了这个问题的解决方案。花哨的验证码和最新的 jQuery 库存在问题。我的项目引用了 Google API 的最新库。我刚刚将其更改为引用 1.3.1 并且事件正确触发。
I found the solution to this one. There is a problem with fancy captcha and latest jQuery libraries. My project was referencing the latest library from Google API. I just changed it to reference to 1.3.1 and the event fires correctly.