我正在开发一个小应用程序,并使用jQuery Tools Tooltip(http://jquerytools.org/documentation/tooltip/index.html)作为工具提示功能。我无法弄清楚如何在页面加载时显示工具提示。有人曾经这样做过吗?
答案 0 :(得分:9)
在初始化工具提示后,您应该能够在页面加载时触发mouseenter事件。
$("#target").mouseenter();
答案 1 :(得分:4)
在看到马修的答案和格雷格的建议后,有两种方法(可能更多)可以做到这一点。
他们在这里。
使用jQuery Tools的API版本
$('.searchToolTip').tooltip({
position: 'bottom center'
});
var tooltipApi = $('.searchToolTip').data('tooltip');
tooltipApi.show();
使用jQuery激活mouseEnter()
$('.searchToolTip').tooltip({
position: 'bottom center'
}).mouseenter();
再次感谢您的帮助!
答案 2 :(得分:0)
看起来好像所有的工具提示都有'.tooltip',所以你可以这样做。
$(function(){
$('div.tooltip').fadeIn();
});
你可能想要为'.fadeOut()'添加一些逻辑