jQuery innerWidth()
此方法獲得匹配集合中第一個元素的當前計算的內部寬度(包括padding,但不包括border),或設定每一個匹配元素的內部寬度。
語法結構一:
[JavaScript] 純文字檢視 複製程式碼.innerWidth()
沒有引數是返回匹配元素集合中第一個元素的內部寬度。
返回元素的內部高度,包括左部和右部的padding,單位是畫素。如果在一組空的元素集合上呼叫,返回undefined(在jQuery3.0之前返回null)。
jQuery1.2.6版本新增。
語法結構二:
[JavaScript] 純文字檢視 複製程式碼.innerWidth(value)
引數解析:
value:可以是一個整數(可以是字串形式),單位預設是px),或者一個帶單位的整數(字串)。
設定所有匹配元素的內部寬度。
jQuery1.8版本新增。
語法結構三:
[JavaScript] 純文字檢視 複製程式碼.innerWidth(function(index,oldWidth))
引數解析:
function:返回匹配元素新內部寬度的回撥函式。index:可選,當前元素在匹配元素集合中的索引(從0開始),oldHeight:可選,當前匹配元素的內部寬度值。在函式中,this指向當前元素。
也就是innerWidth函式的引數是function函式的返回值。
設定所有匹配元素的內部寬度。
jQuery1.8版本新增。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> p{ background-color:green; height:100px; width:200px; padding:10px; border:5px solid red; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function () { $("p").text($("p").innerWidth()) }); }); </script> </head> <body> <p>螞蟻部落</p> <input type="button" id="bt" value="檢視演示"/> </body> </html>
上面的程式碼可以返回p元素的內部寬度(width+padding)。
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> p{ background-color:green; height:100px; width:200px; padding:10px; border:5px solid red; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function () { $("p").innerWidth(250) }); }); </script> </head> <body> <p>螞蟻部落</p> <input type="button" id="bt" value="檢視演示"/> </body> </html>
元素的padding值不會改變,那麼只會改變元素的width值,p元素的寬度值被重置為230px。
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> p{ background-color:green; height:100px; width:200px; padding:10px; border:5px solid red; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function () { $("p").innerWidth(function (index, w) { return w + 50; }) }); }); </script> </head> <body> <p>螞蟻部落</p> <input type="button" id="bt" value="檢視演示"/> </body> </html>
w是元素原本內部寬度,上面的程式碼也就是給元素內部寬度再增加50px。
相關文章
- jquery中的尺寸函式width(),height(),innerWidth(),outerWidth()等的用法jQuery函式
- clientX/Y pageX/Y offsetX/Y layerX/Y screenX/Y clientHeight innerWidth...client
- jQuery初探:自制jQueryjQuery
- 我的’jQuery’和jQueryjQuery
- 我的''jQuery''和jQueryjQuery
- 【Jquery】jquery 基本的動畫jQuery動畫
- 【Jquery】jquery 自定義動畫jQuery動畫
- jQuery :not()jQuery
- jQuery not()jQuery
- jQuery is()jQuery
- jQuery()jQuery
- jQuery on()jQuery
- jQueryjQuery
- 瀏覽器物件屬性 window.innerWidth 和 window.outerWidth 這兩個寬度屬性有何區別?瀏覽器物件
- JQuery模板外掛-jquery.tmpljQuery
- jquery列印頁面(jquery.jqprint)jQuery
- jQuery入門(三)--- jQuery語法jQuery
- jQuery 3教程(一):jQuery介紹jQuery
- jQuery之使用jQuery.fn.prop()替換jQuery.fn.attr()jQuery
- JQuery基本知識彙總;JQuery常用方法;淺入瞭解JQueryjQuery
- (jQuery) jQuery中的事件與動畫(上)jQuery事件動畫
- jquery.fn.extend與jquery.extendjQuery
- jQuery 1.10.0 和 jQuery 2.0.1 釋出jQuery
- jQuery表單外掛jQuery.formjQueryORM
- jQuery 3教程(二):jQuery選擇器jQuery
- jQuery心得2--jQuery案例剖析1jQuery
- jQuery初探jQuery
- jQuery碎片jQuery
- JQuery動畫jQuery動畫
- 分解jQueryjQuery
- jquery的onjQuery
- jquery事件jQuery事件
- jQuery AjaxjQuery
- jQuery 事件jQuery事件
- jQuery 尺寸jQuery
- jQuery - AJAXjQuery
- jQuery htmljQueryHTML
- jQuery prependTo()jQuery