我正在尝试使用on
事件。代码
$(".draggable").on("mouseover", function () {
if (!$(this).data("init")) {
$(this).data("init", true).draggable();
}
});
但上面的代码不起作用。可拖动插件不适用于元素。现在,如果我将on
事件替换为live
then 它开始工作。代码
$(".draggable").live("mouseover", function () {
if (!$(this).data("init")) {
$(this).data("init", true).draggable();
}
});
谁能解释我做错了什么?