mouseover call在这里意味着什么?

时间:2011-01-17 06:57:14

标签: jquery jquery-plugins tooltip

为什么在此代码附加插件的末尾再次调用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();

 });

1 个答案:

答案 0 :(得分:1)

如果委托没有“.hastooltip”类,则调用该函数。调用mouseover()会强制该函数触发并添加“.hastooltip”类。