我们如何使用jquery mobile / Jquery找到元素的坐标或位置?

时间:2012-04-06 07:00:39

标签: jquery jquery-mobile cordova

我正在使用的代码是针对移动应用的代码。我想找出当前所选对象在我们的移动屏幕上的位置>这里我有两个段落元素id“#first”和“#second”我想要找到的位置。但它总是返回我{{1} } 结果。我想这是becoz我使用jquery函数.postion()而不是jquery移动函数。请帮忙

HTML coords (0,0)

1 个答案:

答案 0 :(得分:3)

你试过这个:

$(function () {
    $('#first,#second').click(function () {
       $("#result").text(this.tagName + " coords ( " + $(this).position().left + ", " + $(this).position().top + " )");
    });        
});​

演示:http://jsfiddle.net/CKG9U/