jQuery width()方法
jQuery width()用于返回或设置匹配元素的宽度。
返回宽度: 当使用该方法返回宽度时,它返回第一个匹配元素的宽度。
设置宽度: 当使用该方法设置宽度时,它会为每个匹配元素设置宽度。
该方法是jQuery尺寸的一种。
jQuery尺寸列表:
- width()
- height()
- innerWidth()
- innerHeight()
- outerWidth()
- outerHeight()
语法:
返回宽度:
$(selector).width()
设置宽度:
$(selector).width(value)
使用函数设置宽度:
$(selector).width(function(index,currentwidth))
jQuery width()方法的参数
参数 | 描述 |
---|---|
Value | 这是一个必需参数。用于设置宽度。它以像素(px)、字体尺寸(em)、点(pt)等单位指定宽度。jQuery width() 方法的默认值是像素(px)。 |
Function(index, currentwidth) | 这是一个可选参数。指定一个函数,用于提供所选元素的新宽度。 |
- Index(索引): 提供元素在集合中的索引位置。
- currentwidth(当前宽度): 提供所选元素的当前宽度。
jQuery width()方法示例1
让我们举一个例子来演示jQuery width()方法的效果。
返回宽度:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
(document).ready(function(){("button").click(function(){
alert("Width of div: " + $("div").width());
});
});
</script>
</head>
<body>
<div style="height:100px;width:200px;padding:10px;margin:3px;border:1px solid blue;background-color:lightpink;"></div><br>
<button>Execute the jQuery width() method to return width</button>
</body>
</html>
jQuery width()方法示例2
设置宽度:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>宽度演示</title>
<style>
div {
width: 100px;
height: 80px;
float: left;
margin: 5px;
background:orange;
cursor: pointer;
}
.mod {
background: green;
cursor: default;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<div>A</div>
<div>B</div>
<div>C</div>
<div>D</div>
<div>E</div>
<script>
var modWidth = 70;
( "div" ).one( "click", function() {( this ).width( modWidth ).addClass( "mod" );
modWidth -= 10;
});
</script>
</body>
</html>