我正在使用的代码是针对移动应用的代码。我想找出当前所选对象在我们的移动屏幕上的位置>这里我有两个段落元素id“#first”和“#second”我想要找到的位置。但它总是返回我{{1} } 结果。我想这是becoz我使用jquery函数.postion()而不是jquery移动函数。请帮忙
HTML coords (0,0)
答案 0 :(得分:3)
你试过这个:
$(function () {
$('#first,#second').click(function () {
$("#result").text(this.tagName + " coords ( " + $(this).position().left + ", " + $(this).position().top + " )");
});
});