我正在尝试使用fancy captcha(http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin)的drop事件,但它永远不会触发。这是代码(网站没有任何变化:
$("#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'
});
};
永远不会触发drop事件。有没有人有过花式验证码的经验?
答案 0 :(得分:0)
我找到了解决方案。花哨的验证码和最新的jQuery库存在问题。我的项目引用了Google API中的最新库。我只是将其更改为引用1.3.1并且事件正确触发。