outerWidth([margin] )
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
outerWidth( [margin] )方法获取第一个匹配元素的外部宽度(默认包括边框和填充)。
此方法适用于可见元素和隐藏元素。 由于父项被隐藏而间接隐藏的元素不支持它。
语法 (Syntax)
以下是使用此方法的简单语法 -
<i>selector</i>.outerWidth( [margin] )
参数 (Parameters)
以下是此方法使用的所有参数的说明 -
margin - 此可选参数设置为true时,元素的边距将包含在计算中。
例子 (Example)
以下是一个简单的例子,简单地显示了这种方法的用法 -
<html>
<head>
<title>The jQuery Example</title>
<script type = "text/javascript"
src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
</script>
<script type = "text/javascript" language = "javascript">
$(document).ready(function() {
$("div").click(function () {
var color = $(this).css("background-color");
var width = $(this).outerWidth( true );
$("#result").html("Outer Width is <span>" + width + "</span>.");
$("#result").css({'color': color, 'background-color':'gray'});
});
});
</script>
<style>
#div1{ margin:10px;padding:12px; border:2px solid #666; width:60px;}
#div2 { margin:15px;padding:5px; border:5px solid #666; width:60px;}
#div3 { margin:20px;padding:4px; border:4px solid #666; width:60px;}
#div4 { margin:5px;padding:3px; border:3px solid #666; width:60px;}
</style>
</head>
<body>
<p>Click on any square:</p>
<span id = "result"> </span>
<div id = "div1" style = "background-color:blue;"></div>
<div id = "div2" style = "background-color:pink;"></div>
<div id = "div3" style = "background-color:#123456;"></div>
<div id = "div4" style = "background-color:#f11;"></div>
</body>
</html>