小jQuery工具提示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小jQuery工具提示相关的知识,希望对你有一定的参考价值。

  1. $('.ssTooltip').hide();
  2. $('#ssInfoList1 dd').live('mouseover', function(){
  3. $('body').append('<div id="ssTooltip" style="position: absolute; display: none;">
  4. <p>'+$(this).children('.ssTooltip').text()+'</p>
  5. </div>');
  6.  
  7. //get the position of the placeholder element
  8. var pos = $(this).offset();
  9. var width = $(this).width();
  10.  
  11. //show the menu directly over the placeholder
  12. $("#ssTooltip").css( { "left": (pos.left + 100) + "px", "top":pos.top + "px" } );
  13. $("#ssTooltip").fadeIn('slow');
  14.  
  15. });
  16. $('#ssInfoList1 dd').live('mouseout', function(){
  17. $('div#ssTooltip').remove();
  18. });
  19.  

以上是关于小jQuery工具提示的主要内容,如果未能解决你的问题,请参考以下文章

在jQuery中禁用工具提示

jQuery 工具提示添加换行符

带有链接的jQuery工具提示

javascript [工具提示]通过JQuery #js简单的工具提示

测试 JQuery 工具提示是不是已初始化

新一代jQuery工具提示插件