- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head>
- <title>无标题页</title>
- <script type="text/javascript">
- document.onmousemove=function(){
- var x=window.event.clientX;
- var y=window.event.clientY;
- var divFly=document.getElementById("divfly");
- if(divFly){
- return;
- }
-
- //divFly.style.positon="absolute";
- divFly.style.top=y;
- divFly.style.left=x;
-
- }
- </script>
- </head>
- <body>
- <div id="divfly" style="position:absolute">
- <font color="red">Czar</font>
- </div>
- </body>
- </html>
复制代码 //我用的IE9只显示了层的效果,没onmousemove的效果,求指导 |