源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

js与jquery中获取当前鼠标的x、y坐标位置的代码

  • 时间:2020-07-30 00:50 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:js与jquery中获取当前鼠标的x、y坐标位置的代码
[u]复制代码[/u] 代码如下:
<div id="testDiv">放在我上面</div> <script type="text/javascript"> $('#testDiv').mousemove(function(e) { var xx = e.originalEvent.x || e.originalEvent.layerX || 0; var yy = e.originalEvent.y || e.originalEvent.layerY || 0; $(this).text(xx + '---' + yy); }); </script>
[b]javascript获取鼠标当前位置坐标[/b] 鼠标滑动显示鼠标的当前位置坐标,主要是onmousemove函数。
[u]复制代码[/u] 代码如下:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>javascript获得鼠标位置</title> </head> <body> <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.onmousemove = mouseMove; </script> 鼠标X轴: <input id=xxx type=text> 鼠标Y轴: <input id=yyy type=text> </body>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部