jQuery中的innerWidth和outerWidth有什么区别?

jQuery 中的内部宽度

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

示例

您可以尝试运行以下代码来获取 jQuery 中的内部宽度:

<!DOCTYPE html>

<html>

<head>

<script xx_src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("button").click(function(){

        alert("div 元素的内部宽度: " + $("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()返回第一匹配元件的外宽度。它包括填充和边框。

示例

您可以尝试运行以下代码来获取 jQuery 中的外部宽度:

<!DOCTYPE html>

<html>

<head>

<script xx_src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>

<script>

$(document).ready(function(){

    $("button").click(function(){

        alert("div 元素的外宽: " + $("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>

以上是 jQuery中的innerWidth和outerWidth有什么区别? 的全部内容, 来源链接: utcz.com/z/317456.html

回到顶部