我有以下虚拟html标记:
<table>
<body>
<tr>
<td id="cell" style="height: 1000px; width: 200px;"></td>
</tr>
</body>
</table>
我需要在单元格上订阅click事件并获得相对父表行(tr)的顶部偏移量。
jQuery('#cell', function (e) {
// get top offset in pixels relative parent tr element
});
最好的方法是什么?
编辑:我的意思是我需要鼠标点击偏移相对tr元素
答案 0 :(得分:0)
假设我正确理解了你的问题,这段代码应该可以解决问题。它只输出相对于细胞容器的x,y鼠标坐标。单击鼠标即可触发输出警报。
o = $("#cell");
o.click(
function (e) {
offsetX = e.pageX - o.position().left;
offsetY = e.pageY - o.position().top;
alert('offsetX: ' + offsetX + '\noffsetY:' + offsetY);
}
);
答案 1 :(得分:0)
可能这个......?
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Documento senza titolo</title>
<style>
table{
border-collapse:collapse;
width:200px;
position:relative;
}
table tr{width:200px;float:left;background-color:red;position:relative;}
table tr td{width:100px;background-color:red;}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//if you want offset from tr
$('td').click(function(){
var leftParent=$(this).parent('tr').offset().left
var topParent=$(this).parent('tr').offset().top
var left=Math.round(($(this).offset().left)-leftParent);
var top=Math.round(($(this).offset().top)-topParent)
alert('top'+top+' left'+left)
})
//if you want offset from table
$('td').click(function(){
var leftParent=$(this).parents('table').position().left
var topParent=$(this).parents('table').position().top
var left=Math.round(($(this).offset().left)-leftParent);
var top=Math.round(($(this).offset().top)-topParent)
alert('top'+top+' left'+left)
})
})
</script>
</head>
<body>
<table>
<tr>
<td class="cell">aaa</td>
<td class="cell">bbb</td>
</tr>
<tr>
<td class="cell">ccc</td>
<td class="cell">ddd</td>
</tr>
<tr>
<td class="cell">eee</td>
<td class="cell">fff</td>
</tr>
</table>
</body>
</html>