jQuery 内的 innerWidth 与 outerWidth 有什么区别?


jQuery 中的 innerWidth

innerWidth() 返回第一个匹配元素的内部宽度。它包括填充,但不包括边框和边距。

示例

可以尝试运行以下代码以在 jQuery 中获取内部宽度

在线演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        alert("Inner Width of div element: " + $("div").innerWidth());
    });
});
</script>
</head>
<body>

<div style="height:200px;width:500px;padding:20px;margin:1px;border:1px solid red; background-color:gray;"></div><br>
<button>Get Inner Width of div</button>

</body>
</html>

jQuery 中的 outerWidth

outerWith() 返回第一个匹配元素的外部宽度。它包括填充和边框。

示例

可以尝试运行以下代码以在 jQuery 中获取外部宽度

在线演示

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        alert("Outer Width of div element: " + $("div").outerWidth());
    });
});
</script>
</head>
<body>

<div style="height:200px;width:500px;padding:20px;margin:1px;border:1px solid red; background-color:gray;"></div><br>
<button>Get Outer Width of div</button>

</body>
</html>

更新时间: 10-12-2019

219 次浏览

开启你的 职业生涯

完成课程获得认证

开始
广告