我试图弄清楚如何获得li相对于其ul父标记的左侧位置. 任何的想法? 您可以通过给它位置:relative来使ul标记为li的偏移父级.这将允许您在li上调用 position ,这将告诉您想要了解的内容
任何的想法? 您可以通过给它位置:relative来使ul标记为li的偏移父级.这将允许您在li上调用
position
,这将告诉您想要了解的内容.
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.