标签: jquery coordinates
我需要在我的页面上获得第5段的TOP和LEFT坐标,或者可能是第6段或第8段,我只想弄清楚如何获取我选择的页面上任何段落的坐标。然后我需要在我选择的段落左上角插入一个div 20px。有人可以帮忙吗?
答案 0 :(得分:4)
您可以使用.offset(),例如:
.offset()
var offset = $("p:eq(4)").offset(); //top is offset.top //left is offset.left
或者,如果您需要在“which”段落上更加动态,请使用.eq(),如下所示:
.eq()
$("p").eq(4).offset();
You can test it out here