jQuery 中的宽度和外层宽度有什么区别?

jQuery 中的宽度

的width()是容器的水平的测量,例如,宽度a的div。它不包括填充、边框或边距。

示例

您可以尝试运行以下代码来了解如何在 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").width());

    });

});

</script>

</head>

<body>

<div style="height:200px;width:200px;padding:20px;margin:1px;border:1px solid red; background-color:blue;"></div><br>

<button>Get 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("Outer div元素的宽度: " + $("div").outerWidth());

    });

});

</script>

</head>

<body>

<div style="height:200px;width:200px;padding:20px;margin:1px;border:1px solid red; background-color:blue;"></div><br>

<button>Get Outer Width of div</button>

</body>

</html>

以上是 jQuery 中的宽度和外层宽度有什么区别? 的全部内容, 来源链接: utcz.com/z/311448.html

回到顶部