我正在尝试为我的个人网站http://www.stacked.in提供工具提示。当我在链接上移动鼠标时,我想显示工具提示。工具提示显示内容已在html页面内作为div元素提供,但它是隐藏的。我希望只有当我将鼠标移到链接上时才会显示工具提示。我使用jquery和jquery插件 为此目的http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/。即使我得到了其他一些jquery-plugin,我也会很开心。
请注意,工具提示内容div内部html不会显示。工具提示应该获取元素并显示它。
#tooltip-content {
display:none;
width:250px;
}
这是HTML代码..
<div id="widget" class="span-8 " >
<h2><a href="">Example.com</a></h2>
<ul>
<li><h3><a href="example.com">Example News 1</a></h3>
<div id="tooltip-content">
<div class="published">Thu Jul 8, 2010</div>
<div class="content">
This detail news 1 shown only on tooltip..
</div>
</div>
</li>
<li><h3><a href="example.com">Example News 2</a></h3>
<div id="tooltip-content">
<div class="published">Thu Jul 8, 2010</div>
<div class="content">
This detail news 2 shown only on tooltip..
</div>
</div>
</li>
</ul>
将有超过100个元素需要工具提示。有没有更好的工具或方法来处理这个问题?如果你给我代码样本,我会很高兴你...我已经搜索了很多方法。 http://code.google.com/p/jquery-very-simple-tooltip/接近解决方案,但需要对所有工具提示说明进行初始化。
答案 0 :(得分:0)
我发现http://flowplayer.org/tools/tooltip/index.html的jQuery工具有一个很好的工具提示。您可以在元素上使用title属性,也可以使用下一个DOM节点作为非标题元素的工具提示。
非常灵活,我相信它会适当地满足您的需求。祝你好运!