jQuery之height()、innerHeight()、outer

m53469發表於2021-09-09

在jQuery中,獲取元素高度的函式有3個,它們分別是height()、innerHeight()、outerHeight()
與此相對應的是,獲取元素寬度的函式也有3個,它們分別是width()、innerWidth()、outerWidth()

下面我以height()、innerHeight()、outerHeight()三個函式為例,以元素element的盒模型為例來介紹它們之間的區別。

圖片描述

Paste_Image.png

函式 高度範圍
height() content
innerHeight() content+padding
outerHeight() content+padding+border
outerHeight(true) content+padding+border+margin
只有height()函式可用於window或document物件。



作者:匿名使用者404
連結:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2819/viewspace-2805277/,如需轉載,請註明出處,否則將追究法律責任。

相關文章