jQuery的尺寸
處理尺寸的方法
width()
height()
innerWidth()
innerHeight()
outerWidth()
outerHeight()
width()和height()方法
width()方法
設置或返回元素的寬度,不包括內邊距、邊框或外邊距
height()方法
設置或返回元素的高度,不包括內邊距、邊框或外邊距
innerWidth()和innerHeight()方法
innerWidth()
方法返回元素的寬度,包括內邊距
innerHeight()
方法返回元素的高度,包括內邊距
outerWidth()和outerHeight()方法
outerWidth()
方法返回元素的寬度,包括內邊距和邊框
outerHeight()
方法返回元素的高度,包括內邊距和邊框
總結
- 上一篇: jQuery操作CSS
- 下一篇: jQuery创建页面元素