小jQuery工具提示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小jQuery工具提示相关的知识,希望对你有一定的参考价值。
$('.ssTooltip').hide(); $('#ssInfoList1 dd').live('mouseover', function(){ $('body').append('<div id="ssTooltip" style="position: absolute; display: none;"> </div>'); //get the position of the placeholder element var pos = $(this).offset(); var width = $(this).width(); //show the menu directly over the placeholder $("#ssTooltip").css( { "left": (pos.left + 100) + "px", "top":pos.top + "px" } ); $("#ssTooltip").fadeIn('slow'); }); $('#ssInfoList1 dd').live('mouseout', function(){ $('div#ssTooltip').remove(); });
以上是关于小jQuery工具提示的主要内容,如果未能解决你的问题,请参考以下文章