html:
<div id="tooltip" style="display:none;">bla bla</div> <div id="yourLink">Click here to show the tooltip!</div>
和JS:
$('#yourLink').click(function(){ $('#tooltip').toggle(); });
您只需要正确设置工具提示div的样式
那里还有很好的工具提示插件. iftrue提到一个,还有this one