Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我想获取此选择器数组中第二个对象的滚动位置
alert($("#sites > div").eq(2).scrollTop());
我知道这很简单,但我似乎无法做到正确..
JavaScript 中的数组是从零开始的。所以第二个对象在 position 1。因此,您将不得不使用eq(1)而不是eq(2).
1
eq(1)
eq(2)
除了 Vivin 指出的小错误(这里不太相关),我只是误解了函数 scrollTop。我一直在寻找的是:
alert($("#sites > div").eq(1).position().top);
愚蠢的我,但是昨天我遇到这个问题时已经很晚了,所以这就是我的借口。