如何强制打开一个Mootools工具提示(提示)?
此致
佩德罗
答案 0 :(得分:1)
你可以尝试在尖端所附着的元素上触发触发事件。
例如- 如果你有
<a href="#" id="gethelp" class="tip" rel="Click here to sign in through facebook">what's this?</a>
<script type="text/javascript">
// domready etc.
var myTips = new Tips('a.tip');
// force the gethelp one up:
$("gethelp").fireEvent("mouseenter");
</script>
http://github.com/mootools/mootools-more/blob/master/Source/Interface/Tips.js
你可以做myTips.show(元素);虽然整个概念都存在缺陷:
当您将鼠标悬停在元素上时,mootools工具提示基本上会跟随您的鼠标。因此,它们是事件驱动的,并且工具提示预先构建在目标元素附近。通过显示一个没有mouseenter事件,它看起来有点奇怪...