1

Tipsy 是很棒的 jQuery 工具提示插件,例如 facebook。这适用于许多选项,但我现在需要在工具提示中打印 mypage 的链接(rel 方法)正文或外部工具提示/隐藏工具提示隐藏。在醉酒文档(手动触发示例)中,如果我们将其更改为 1 个链接(工具/单击显示/单击隐藏)或更改正文/外部的单击,则仅触发显示/隐藏链接(2 个链接)的链接,我认为我的问题已解决。这个解决方案/问题的任何方法?谢谢

触发提示:

<div class='caption'>Manual triggering example:</div>
<div id='manual-example' class='example'>
<a rel='tipsy' title='Well hello there'>My tooltip is manually triggered</a> |
<a href='#' onclick='$("#manual-example a[rel=tipsy]").tipsy("show"); return false;'>Show it</a> |
<a href='#' onclick='$("#manual-example a[rel=tipsy]").tipsy("hide"); return false;'>Hide it</a>
</div>
4

1 回答 1

1

您可以使用此代码在状态之间切换:

var el = $('#manual-example a[rel=tipsy]').tipsy({trigger: 'manual'});
$('#toggleIt').click(function(e){
    e.preventDefault();
    if($('.tipsy').length == 0){
        el.tipsy('show');
    }else{
        el.tipsy('hide');        
    }
});

JSFIDDLE

于 2013-06-10T15:20:32.690 回答