花式验证码 jquery - 放置事件

发布于 2024-10-20 21:43:54 字数 480 浏览 1 评论 0原文

我正在尝试使用花式验证码的放置事件(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗喜 2024-10-27 21:43:54

我找到了这个问题的解决方案。花哨的验证码和最新的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文