我想检测我点击了 id 为 clickdetectiondiv 的 div 中的哪个位置。我使用的代码为我提供了相对于 HTML 页面正文左上角的位置。我花了很多时间来弄清楚如何做到这一点,但无法找到答案。我有一个解决方案是减去这个绝对定位的 div 的位置。但并不总是我会得到 div 的位置,因为屏幕尺寸可能会有所不同。请告诉我另一种方法来做到这一点。
提前致谢,
<html>
<head>
<script type="text/javascript">
function clicked(event){
var x=event.clientX
var y=event.clientY
document.getElementById("outputdiv").innerHTML= "X coords: " + x + ", Y coords: " + y;
}
</script>
<style type="text/css">
#clickdetectiondiv{
position: absolute;
top: 100px;
left: 100px;
height: 100px;
width: 500px;
background: gray;
}
#outputdiv{
position: absolute;
top: 300px;
left: 100px;
height: 100px;
width: 500px;
background: #eee;
text-align: center;
}
</style>
</head>
<body>
<div id="clickdetectiondiv" onmousedown="clicked(event);"></div>
<div id="outputdiv"></div>
</body>
</html>