jQuery width( ) 方法可用于设置或返回被选元素的宽度。
(1)当返回元素的宽度时, 只返回匹配到的第一个元素的宽度。
(2)当设置元素的宽度时,所有匹配到的元素的宽度都会被设置。
值得一提的是,该方法不包含元素的内外边距以及边框。
1.返回元素的宽度
语法格式:
$(selector).width()
示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="../jQuery/jQuery.js"></script>
<script>
$(document).ready(function(){
$(".box").click(function(){
alert("宽度为" + $(this).width() + "px");
})
})
</script>
<style>
.box {
width: 200px;
height: 200px;
padding: 10px;
margin: 5px;
border: 3px solid #ccc;
background-color: rgba(17, 14, 207, 0.589);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
点击元素时,将弹出一个对话框:
注意:返回的宽度不包含元素的内外边距以及边框。
2.设置元素的宽度
语法格式:
$(selector).width(value)
示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="../jQuery/jQuery.js"></script>
<script>
$(document).ready(function(){
$(".box").click(function(){
$(this).width(200 + "px");
})
})
</script>
<style>
.box {
width: 100px;
height: 100px;
background-color: rgba(21, 207, 14, 0.589);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
元素被点击时,其宽度将变化为200px,如图:
3.通过函数设置元素的宽度
语法格式:
$(selector).width(function(index,currentValue))
参数解释如下:
index:元素的索引号
currentValue:元素的当前高度值
示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="../jQuery/jQuery.js"></script>
<script>
$(document).ready(function(){
$("div").click(function(){
$(this).width(function(index,currentValue){
return currentValue + 10 + "px";
})
})
})
</script>
<style>
.box1 {
width: 100px;
height: 100px;
margin-bottom: 10px;
background-color: rgba(14, 152, 207, 0.589);
}
.box2 {
width: 100px;
height: 100px;
background-color: rgba(14, 207, 72, 0.589);
}
</style>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
</body>
</html>
任意一个元素被点击,其宽度都会增加,如图: