首页 > 其他 > 详细

5自定义提示

时间:2014-06-14 10:28:33      阅读:338      评论:0      收藏:0      [点我收藏+]
 1 <!DOCTYPE html>
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5     <style type="text/css">
 6         div {
 7             border: 1px solid #000;
 8             padding: 5px;
 9             margin: 2px;
10             width: 100px;
11             position: absolute;
12             display: none;
13             background-color: white;
14         }
15 
16         body {
17             border: 2px dashed;
18         }
19 
20         img {
21             position: absolute;
22         }
23     </style>
24     <title></title>
25     <script src="Scripts/jquery-1.8.2.min.js"></script>
26     <script type="text/javascript">
27         var divMsg;
28         $(function () {
29             divMsg = $("<div></div>");
30             $("body").append(divMsg);
31             $("li").mouseover(function (e) {
32                
33                 divMsg.css({display:"block",left:e.pageX,top:e.pageY}).html(this.getAttribute("content"));
34             }).mouseout(function () {
35                 divMsg.css("display","none");
36             });
37         });
38 
39     </script>
40 </head>
41 <body>
42     <ul>
43         <li content="广州小蛮腰1">广州小蛮腰1</li>
44         <li content="广州小蛮腰2">广州小蛮腰2</li>
45         <li content="广州小蛮腰3">广州小蛮腰3</li>
46         <li content="广州小蛮腰4">广州小蛮腰4</li>
47         <li content="广州小蛮腰5">广州小蛮腰5</li>
48     </ul>
49 </body>
50 </html>

 

5自定义提示,布布扣,bubuko.com

5自定义提示

原文:http://www.cnblogs.com/sumg/p/3787784.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!