• js 获取 坐标


    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    
    <body>
    <ul>
    <li>12345678</li>
    <li>234567</li>
    <li>1234567</li>
    <li>456789</li>
    <li>1234567</li>
    </ul>
    <div  id="mm" style=" position:fixed; margin-top:-100px; margin-left:30px;">
      <div style=" border-bottom:1px solid #999;border-left:1px solid #999; margin-left:100px; background-color:#FFF; margin-top:20px; overflow:hidden; 15px; height:15px;transform:rotate(45deg)"></div>
        <div style="200px; height:200px; border:1px solid #999; margin-left:108px; border-radius:10px; margin-top:-45px;"></div></div>
    </body>
    <script>
    var bb=document.getElementsByTagName("li").length;
    var aa=document.getElementsByTagName("li");
    for(var i=0;i<bb;i++)
    {
        aa[i].onmousemove=function(){
            
                    document.onmousemove=function(e)
                    { 
                        e=e? e:window.event;
                        var p=e.screenX;
                        var n=p+"px";
                        var t=e.screenY;
                        var to=t+"px"
                         document.getElementById("mm").style.display= "block";
                      //  document.getElementById("mm").style.left= n;
                        document.getElementById("mm").style.top= to;
                        
                          //    document.writeln("X:"+e.screenX+"Y:"+e.screenY);
                
                      }
            
            }
            
            
            aa[i].onmouseout=function(){
            
                    document.onmousemove=function(e)
                    {
                        e=e? e:window.event;
                        var p=e.screenX;
                        var n=p+"px";
                        var t=e.screenY;
                        var to=t+"px"
                       document.getElementById("mm").style.display= "none";
                          //    document.writeln("X:"+e.screenX+"Y:"+e.screenY);
                
                      }
            
            }
        
        
    }
    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    
    <body>
    <li>12345678</li>
    <li>234567</li>
    <li>1234567</li>
    <li>456789</li>
    <li>1234567</li>
    <div id="mm" style=" position:fixed; margin-top:-100px; margin-left:30px;">
    <div style=" border-bottom:1px solid #000;border-left:1px solid #000; margin-left:100px; background-color:#FFF; overflow:hidden; 20px; height:20px;transform:rotate(45deg)"></div>
    <div style="100px; height:100px; border:1px solid #999; margin-left:110px; margin-top:-30px;"></div></div>
    </body>
    <script>
    var bb=document.getElementsByTagName("li").length;
    var aa=document.getElementsByTagName("li");
    for(var i=0;i<bb;i++)
    {
    aa[i].onmousemove=function(){
    
    document.onmousemove=function(e)
    { 
    e=e? e:window.event;
    var p=e.screenX;
    var n=p+"px";
    var t=e.screenY;
    var to=t+"px"
    document.getElementById("mm").style.display= "block";
    // document.getElementById("mm").style.left= n;
    document.getElementById("mm").style.top= to;
    
    //    document.writeln("X:"+e.screenX+"Y:"+e.screenY);
    
    }
    
    }
    
    
    aa[i].onmouseout=function(){
    
    document.onmousemove=function(e)
    {
    e=e? e:window.event;
    var p=e.screenX;
    var n=p+"px";
    var t=e.screenY;
    var to=t+"px"
    document.getElementById("mm").style.display= "none";
    //    document.writeln("X:"+e.screenX+"Y:"+e.screenY);
    
    }
    
    }
    
    
    }
    
     
    
    </script>
    
    </html>
  • 相关阅读:
    sublime 部分插件
    Error: EACCES: permission denied, mkdir '......node-sass/build'错误解决方案
    字符串
    数组
    MySQL5.7.26 忘记Root密码小计
    CentOS7安装MySQL8.0小计
    代替print输出的PY调试库:PySnooper
    聊聊数据库~5.SQL运维上篇
    'gbk' codec can't encode character 'xa0' in position 34: illegal multibyte sequence
    稍微记录下Django2.2使用MariaDB和MySQL遇到的坑
  • 原文地址:https://www.cnblogs.com/benpaodegegen/p/6407776.html
Copyright © 2020-2023  润新知