js获取鼠标坐标 js获取鼠标像素点

发布时间:2020-01-01编辑:脚本学堂
本文介绍了js获取鼠标坐标,以及js获取鼠标像素点的实例代码,有需要的朋友参考下。

使用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>
<title>javascript获取鼠标坐标--www.jb200.com</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<style type="text/css">
.tip {
width:200px;
border:2px solid #ddd;
padding:8px;
background:#f1f1f1;
color:#666;
}
</style>
<script type="text/javascript">
function mousepos(e){
var x,y;
var e = e||window.event;
return {
x:e.clientx+document.body.scrollleft+document.documentelement.scrollleft,
y:e.clienty+document.body.scrolltop+document.documentelement.scrolltop
};
};
function test(e){
document.getelementbyid("mjs").innerhtml = mousepos(e).x+','+mousepos(e).y;
};
</script>
</head>
<body>
<div id="mjs" class="tip">脚本学堂 www.jb200.com 编辑整理</div>
<div id="test" style="width:1000px;height:1000px;background:#ccc;" onmousemove="test(event)"></div>
</body>
</html>