如何检索与其父项相关的列表项 sx,y 坐标
理想情况下,我希望有一个这样的列表:
<ul class="parent" id="app1">
<li><a href="#">Item 1</a>
<ul class="child">
<li><a href="#">Sub Item 1 - 1</a></li>
</ul>
</li>
<li><a href="#">Item 2</a></li>
</ul>
我需要知道单击后
的 x,y 坐标。$('.parent > li').click( function() {
var x = $(this)... // x coordinate
var y = $(this)... // y coordinate
var sub_y = y + $(this).height();
var sub_x = x; // want x to be 0 (left side of ul.parent)
});
Ideally I would like to have a list like this:
<ul class="parent" id="app1">
<li><a href="#">Item 1</a>
<ul class="child">
<li><a href="#">Sub Item 1 - 1</a></li>
</ul>
</li>
<li><a href="#">Item 2</a></li>
</ul>
I need to know the x,y coordinate of the <li>
after its clicked.
$('.parent > li').click( function() {
var x = $(this)... // x coordinate
var y = $(this)... // y coordinate
var sub_y = y + $(this).height();
var sub_x = x; // want x to be 0 (left side of ul.parent)
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
查看演示->
使用
.position()
:这将允许您可以获得计算出的元素的顶部和左侧位置。
See the demo->
Use
.position()
:This will allow you to get the computed top and left position of the element.
在 JSFiddle
On JSFiddle
使用 jQuery postion() 方法。
Use the jQuery postion() method.
您只需调用 position 即可获取元素相对于其父元素的位置。
You just need to call position to get the position of an element, relative to its parent.