为什么在此代码附加插件的末尾再次调用mouseover方法:
$("[id^=pane]").delegate("[id^=comm]:not(.hastooltip)","mouseover",function() {
$(this).addClass("hastooltip").tooltip({
tip: "#tooltip",
position: "bottom center",
offset: [-10, 0],
delay: 0
}).mouseover();
});
答案 0 :(得分:1)
如果委托没有“.hastooltip”类,则调用该函数。调用mouseover()会强制该函数触发并添加“.hastooltip”类。