我用谷歌搜索了大约 2 天,不知道如何为http://api.jqueryui.com/tooltip/设置超时???
也许我应该使用 jquery hoverIntent ?
这是我的代码
$('*[class*="help_"]').tooltip({
open: function(e,o){
$(o.tooltip).mouseover(function(e){
$('*[class*="help_"]').tooltip('open');
});
$(o.tooltip).mouseout(function(e){
});
},
close: function(e,o) {}
});