我正在使用这个很棒的工具提示,它在悬停时显示工具提示(带有 .tooltip 函数的锚元素的标题)。这一次,我希望它在点击时显示,所以我这样做了:-
$(document).ready(function(){
$(".icons a.tooltips").click(function() {
return $($(this).attr("href")).html().easyTooltip();
// Prevent the browser jump to the link anchor
e.preventDefault();
});
});
用于此的 html 如下:
<div class="foo">
<a class="bar" title="Lorem ipsum" href="#"></a>
<a class="bar" title="meaningless text" href="#"></a>
<a class="bar" title="more meaningless text" href="#"></a>
<a class="bar" title="even more meaningless text" href="#"></a>
</div>