码迷,mamicode.com
首页 > Web开发 > 详细

js 获取鼠标位置坐标

时间:2015-03-03 20:10:11      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>javascript获得鼠标位置</title> 
</head> 
<body> 
<div id="lijj"  style="width:500px;height:500px;background:#000;">
</div>

<script> 
function mouseMove(ev) 
{ 
    Ev= ev || window.event; 
    var mousePos = mouseCoords(ev); 
    document.getElementById("xxx").value = mousePos.x; 
    document.getElementById("yyy").value = mousePos.y; 
} 
function mouseCoords(ev) 
{ 
    if(ev.pageX || ev.pageY){ 
        return {x:ev.pageX, y:ev.pageY}; 
    } 
    return{ 
        x:ev.clientX + document.body.scrollLeft - document.body.clientLeft, 
        y:ev.clientY + document.body.scrollTop - document.body.clientTop 
    }; 
} 
document.getElementById(lijj).onclick = mouseMove; 

</script> 
鼠标X轴: 
<input id=xxx type=text> 
鼠标Y轴: 
<input id=yyy type=text> 
</body> 

 

js 获取鼠标位置坐标

标签:

原文地址:http://www.cnblogs.com/xinlinux/p/4311687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!