我正在使用 jquery-ui 的 (1.10.2) 工具提示小部件,我遇到了一个恼人的错误。工具提示不会在第一次鼠标悬停时显示。当我将鼠标悬停并重新鼠标悬停时以及之后的每次时都会这样做。只是不是第一次。这是我的代码:
HTML:
<img src="btn-tooltip-info.png" class="tooltip" title="Your text here"/>
javascript:
$(document).ready( function() {
$(document).on("mouseover", ".tooltip", function(e){
$(this).tooltip({
content: function() {
return $(this).attr('title');
},
position: { my: "left+15 center", at: "right center" }
});
});
});
我使用 on() 是因为其他进程可能会在初始加载后动态更改 html。我在这里不知所措,任何见解将不胜感激。提前感谢您的帮助。