jquery包括margin外邊距的outerWidth或者outerHeight
本章節分享一段程式碼例項,它實現了獲取包括外邊距在內的outerWidth或者outerHeight效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> #antzone{ height:100px; width:300px; padding:10px; margin:3px; border:1px solid blue; background-color:lightblue; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script> $(document).ready(function(){ $("#bt").click(function(){ var txt=""; txt+="div的寬度:" + $("#antzone").width()+"</br>"; txt+="div的高度:" + $("#antzone").height()+"</br>"; txt+="包括margin的outerWidth:"+$("#antzone").outerWidth(true)+"</br>"; txt+="包括margin的outerHeight:"+$("#antzone").outerHeight(true); $("#antzone").html(txt); }); }); </script> </head> <body> <div id="antzone"></div> <input type="button" id="bt" value="檢視效果"/> </body> </html>
outerWidth()方法可以參閱jQuery outerWidth()一章節。
相關文章
- CSS margin 外邊距CSS
- CSS margin外邊距CSS
- CSS margin負外邊距CSS
- scss自動生成margin padding邊距CSSpadding
- 用padding和margin撐起左右邊距padding
- CSS 負外邊距CSS
- CSS 外邊距合併CSS
- CSS 右外邊距失效CSS
- 外邊距與絕對定位
- jQuery固定側邊欄外掛ssMenujQuerySSM
- 12.9學習日報(盒子模型和各類注意事項、margin垂直外邊距合併、頂部塌陷問題)模型
- CSS 盒子的邊距塌陷CSS
- window.outerHeight
- 左右邊距可控
- 盒子模型的外邊距塌陷和合並問題及解決方案模型
- window.outerWidth
- CSS padding 內邊距CSSpadding
- CSS padding內邊距CSSpadding
- jQuery簡單實用的響應式固定側邊欄外掛jQuery
- CSS 右內邊距失效CSS
- 如何縮小Matplotlib圖中的邊距
- echarts grid屬性控制邊距Echarts
- jQuery的外掛列表jQuery
- 適合移動手機的jQuery多級側邊欄選單外掛jQuery
- 以vue元件或者外掛的形式,實現throttle或者debounceVue元件
- Python修改柱狀圖邊緣柱子與圖邊界的距離Python
- 原生JS獲取DOM 節點到瀏覽器頂部的距離或者左側的距離JS瀏覽器
- 浮動定位(BFC、邊距合併)
- JQuery模板外掛-jquery.tmpljQuery
- win10系統怎麼設定word頁邊距_win10設定word頁邊距的步驟Win10
- jQuery和css3側邊欄滑出式圖片介紹外掛jQueryCSSS3
- iOS tableView 分割線左右邊距調整iOSView
- img圖片設定padding內邊距padding
- 1.15 列印的縮放和頁邊距的設定 [Excel教程]Excel
- JQuery蜂巢圖外掛jQuery
- jquery寫的ajax分頁外掛jQuery
- 面試之CSS篇 - 邊距重疊與BFC面試CSS
- IMG圖片下面出現下邊距的解決辦法
- HTML中<a>標籤無法使用垂直邊距的解決方法HTML