如何使用 jQuery 获取 div 元素的宽度?


要获取 div 元素的宽度, 请在 jQuery 中使用 width() 方法。

范例

你可以尝试运行以下代码来使用 jQuery 获取 div 元素的宽度

立即演示

<!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("Width of div element: " + $("div").width());
    });
});
</script>
</head>
<body>

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

</body>
</html>

更新于: 17-Dec-2019

2K+ 人浏览

开启你的 职业生涯

通过完成课程取得认证

开始
广告