博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js鼠标提示
阅读量:6843 次
发布时间:2019-06-26

本文共 2596 字,大约阅读时间需要 8 分钟。

 兼容各浏览器:

 

 
  1. <script> 
  2. <!-- 
  3.     function wsug(e, str){ 
  4.         var oThis = arguments.callee; 
  5.         if(!str) { 
  6.             oThis.sug.style.visibility = 'hidden'
  7.             document.onmousemove = null
  8.             return; 
  9.         }        
  10.         if(!oThis.sug){ 
  11.             var div = document.createElement('div'), css = 'top:0; left:0; position:absolute; z-index:100; visibility:hidden'
  12.                 div.style.cssText = css; 
  13.                 div.setAttribute('style',css); 
  14.             var sug = document.createElement('div'), css'font:normal 12px/16px "宋体"; white-space:nowrap; color:#666; padding:3px; position:absolute; left:0; top:0; z-index:10; background:#f9fdfd; border:1px solid #0aa'
  15.                 sug.style.cssText = css; 
  16.                 sug.setAttribute('style',css); 
  17.             var dr = document.createElement('div'), css = 'position:absolute; top:3px; left:3px; background:#333; filter:alpha(opacity=50); opacity:0.5; z-index:9'
  18.                 dr.style.cssText = css; 
  19.                 dr.setAttribute('style',css); 
  20.             var ifr = document.createElement('iframe'), css='position:absolute; left:0; top:0; z-index:8; filter:alpha(opacity=0); opacity:0'
  21.                 ifr.style.cssText = css; 
  22.                 ifr.setAttribute('style',css); 
  23.             div.appendChild(ifr); 
  24.             div.appendChild(dr); 
  25.             div.appendChild(sug); 
  26.             div.sug = sug; 
  27.             document.body.appendChild(div); 
  28.             oThis.sug = div
  29.             oThis.dr = dr; 
  30.             oThis.ifr = ifr; 
  31.             div = dr = ifr = sug = null; 
  32.         } 
  33.         var ee = e || window.event, obj = oThis.sug, dr = oThis.dr, ifr = oThis.ifr; 
  34.         obj.sug.innerHTML = str
  35.         var w = obj.sug.offsetWidth, h = obj.sug.offsetHeight, dw = document.documentElement.clientWidth||document.body.clientWidth; dh = document.documentElement.clientHeight || document.body.clientHeight; 
  36.         var st = document.documentElement.scrollTop || document.body.scrollTop, sl = document.documentElement.scrollLeft || document.body.scrollLeft; 
  37.         var left = e.clientX +sl +17 + w < dw + sl && e.clientX + sl + 15 || e.clientX +sl-8 - w, top = e.clientY + st + 17; 
  38.         obj.style.left = left+ 10 + 'px'; 
  39.         obj.style.top = top + 10 + 'px'; 
  40.         dr.style.width = w + 'px'; 
  41.         dr.style.height = h + 'px'; 
  42.         ifr.style.width = w + 3 + 'px'; 
  43.         ifr.style.height = h + 3 + 'px'; 
  44.         obj.style.visibility = 'visible'
  45.         document.onmousemove = function(e){ 
  46.             var ee = e || window.event, st = document.documentElement.scrollTop || document.body.scrollTop, sl = document.documentElement.scrollLeft || document.body.scrollLeft; 
  47.             var left = e.clientX +sl +17 + w < dw + sl && e.clientX + sl + 15 || e.clientX +sl-8 - w, top = e.clientY + st +17 + h < dh + st && e.clientY + st + 17 || e.clientY + st - 5 - h; 
  48.             obj.style.left = left + 'px'; 
  49.             obj.style.top = top + 'px'; 
  50.         } 
  51.     } 
  52. //--> 
  53. </script> 
  54. <a onmouseover="wsug(event, '共 100 个')" onmouseout="wsug(event, 0)" href="#">okok</a> 

 

      本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/944742,如需转载请自行联系原作者

你可能感兴趣的文章
通向架构师的道路(二)--之apache tomcat https应用
查看>>
理解会话
查看>>
学习Linux决心书
查看>>
华为使用命令
查看>>
二、Python'核心编程(数字)
查看>>
javamail正文乱码
查看>>
poj2226精妙的构图
查看>>
ubuntu 13.10 创建root图形界面超级用户
查看>>
关于制定通信协议
查看>>
duilib 开源界面库
查看>>
ubuntu虚拟机 root用户
查看>>
License使用成本估算
查看>>
JS 文字闪烁效果实现
查看>>
我的友情链接
查看>>
PyDev for Eclipse 简介
查看>>
九九乘法表
查看>>
统一沟通-技巧-9-Lync 2010-Outlook 2010-自动配置-2-普通人员
查看>>
js/nodejs检测时间有效性
查看>>
IOS UITableView详解二性能优化 & LOL游戏人物展示
查看>>
nexus 7 恢复出厂设置后一系列问题
查看>>