今天工作中碰到要弹出tip浮动提示框,如服务器控件的ToolTip属性。

  通过GOOGLE搜到了一个很好用的tip浮动提示框:TipTip jQuery Plugin

  例子如下:  

 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 2 <html>
 3  <head>
 4   <title> New Document </title>
 5   <meta name="Generator" content="EditPlus">
 6   <meta name="Author" content="">
 7   <meta name="Keywords" content="">
 8   <meta name="Description" content="">
 9   <link rel="stylesheet" type="text/css" href="tipTip.css" />
10   
11   <script type="text/javascript" src="jquery-1.4.1.min.js"></script>
12   <script type="text/javascript" src="jquery.tipTip.minified.js"></script>
13  </head>
14 
15  <body>
16   
17     <a href="http://www.baidu.com" title="百度-baidu">百度</a>
18     <img src="LINUX.jpg" class="someClass" title="A picture of the World" />
19 
20  </body>
21 </html>
查看代码

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-07
  • 2022-12-23
  • 2022-01-29
  • 2021-09-27
  • 2021-11-11
  • 2021-12-25
猜你喜欢
  • 2022-12-23
  • 2021-05-17
  • 2021-04-22
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
  • 2022-03-02
相关资源
相似解决方案