[问题] JQuery offsetParent要怎么用Orz

楼主: hirabbitt (兔子)   2017-03-22 18:16:59
function getTop(o) {
var totalTop = 0;
do {
totalTop += o.offset().top;
o = $(o.offsetParent());
} while (o !== $(document.body) && o !== $("html")[0])
return totalTop;
}
不知道while要下什么条件
试过加 o != null 或是 o.length > 0
都是进无限循环...
作者: xw (无上菩提本)   2017-03-22 23:45:00
或许可以先log看一下o是什么,是不是跟你想的一样

Links booklink

Contact Us: admin [ a t ] ucptt.com