使用此jQuery函数遇到麻烦:

$("#content").siblings().each(function(i){
  heightOfSiblings = heightOfSiblings + this.outerHeight();
});


错误是“ outerHeight不是函数”。

我究竟做错了什么?

谢谢!

最佳答案

我认为您将需要$(this).outerHeight();

http://docs.jquery.com/CSS/outerHeight

关于jquery - outsideHeight不是函数吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/947692/

10-10 18:53