📅  最后修改于: 2020-11-26 01:21:06             🧑  作者: Mango
jQuery width()方法用于返回或设置匹配元素的宽度。
返回宽度:使用此方法返回宽度时,它将返回第一个匹配元素的宽度。
设置宽度:使用此方法设置宽度时,它将为每个匹配的元素设置宽度。
此方法是jQuery维度之一。
jQuery尺寸列表:
句法:
要返回宽度:
$(selector).width()
设置宽度:
$(selector).width(value)
要使用函数设置宽度:
$(selector).width(function(index,currentwidth))
Parameter | Description |
---|---|
Value | It is a mandatory parameter. It is used for setting width. It specifies the width in px, em, pt etc. The default value of jQuery width() method is px. |
Function(index, currentwidth) | It is an optional parameter. It specifies a function that provides the new width of selected element.
|
让我们以一个示例来演示jQuery width()方法的效果。
要返回宽度:
设置宽度:
width demo
A
B
C
D
E