innerheight() ,outerheight()和height()的區別

antzone發表於2017-04-18

關於標題中三個方法的具體用法可以參閱下面三篇文章:

(1).jQuery innerHeight()一章節。

(2).jQuery outerHeight()一章節。

(3).jQuery height()一章節。

區別其實非常簡單,下面就簡單總結一下:

(1).height() :height;

(2).innerheight() :height+padding;

(3).outerheight() :height+padding+border;

(4).outerheight(true) :height+padding+border+margin;

通過上面的對比是不是就很清晰了。

相關文章