本文介绍了如何获得元素的顶部位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以使用javascript / jquery获取元素的顶部位置?
Is it possible to get the top position of an element using javascript/jquery ?
元素是一个表,如果这很重要。
The element is a table, if that matters.
推荐答案
如果你想要相对于文件的头寸,那么:
If you want the position relative to the document then:
$("#myTable").offset().top;
但通常你会想要相对于最近的父母的位置:
but often you will want the position relative to the closest positioned parent:
$("#myTable").position().top;
这篇关于如何获得元素的顶部位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!