jsp里面,怎么获取鼠标在网页中的坐标?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp里面,怎么获取鼠标在网页中的坐标?相关的知识,希望对你有一定的参考价值。

参考技术A 封装在window.event这个类下,你可以去看看,另提供一份参考代码~

<html >
<head>
<title>javascript获取鼠标坐标</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"></div>
<div id="test" style="width:1000px;height:600px;background:#ccc;" onmousemove="test(event)"></div>
</body>
</html>本回答被提问者采纳

QT如何获取窗口外的鼠标点击事件,或者鼠标坐标

本窗口内的鼠标事件都好说,窗体外的鼠标点击事件,或者鼠标的实时坐标,怎么获得呢?

void mousePressEvent(QMouseEvent *event); 这是鼠标单机事件函数要在.h里面声明只要发生鼠标事件都会触发这个函数

void mousePressEvent(QMouseEvent *event)

    //获得鼠标的x , y 坐标 event->x  , event->y
    //判断点击的是左键还是右键 event->button()==Qt::LeftButton(Qt::RightButton) 

再.cpp里面实现就好

获取qt窗口外的坐标可以使用

event->globalPos();
event->globalX();
event->globalY();

这三个函数都可以捕抓到整个屏幕的坐标

参考技术A 是在 windows 平台吗?可以使用鼠标钩子。本回答被提问者采纳

以上是关于jsp里面,怎么获取鼠标在网页中的坐标?的主要内容,如果未能解决你的问题,请参考以下文章

js如何获取鼠标在某元素移动时~鼠标指针在元素中的坐标?

如何用JS 获取DIV的坐标位置?

你好,请问怎么在网页中让鼠标点击指定的坐标位置

vb后台模拟鼠标点击网页

Qt 如何获取滚动窗体中鼠标点击的坐标

JS 获取屏幕中鼠标的坐标值