gpt4 book ai didi

jQuery - 获取 ul 中 li 的位置()

转载 作者:行者123 更新时间:2023-12-01 00:53:49 28 4
gpt4 key购买 nike

我试图弄清楚如何获取 li 相对于其 ul 父标记的左侧位置。有什么想法吗?

最佳答案

您可以通过指定 position:relative 使 ul 标记成为 li 的偏移父级。这将允许您调用 positionli 上,它会告诉您您想知道的内容。

var pos = $("#target").position();
$("#target").text("This li is positioned " + pos.top
+ "px from the top and " + pos.left
+ "px from the left edge of the ul");

<强> See it in action

关于jQuery - 获取 ul 中 li 的位置(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7423582/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com