案例测试:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>元素宽度与高度</title>
<style type="text/css">
#container{
width:200px;
height:200px;
padding:20px;
margin:30px;
border:5px solid red;
}
</style>
<script type="text/javascript" src="jquery-1.11.1.js"></script>
<script type="text/javascript">
$(function(){
console.log("width():"+$("#container").width());
console.log("height():"+$("#container").height());
console.log("innerWidth()"+$("#container").innerWidth());
console.log("innerHeight():"+$("#container").innerHeight());
console.log("outerWidth():"+$("#container").outerWidth());
console.log("outerHeight():"+$("#container").outerHeight());
})
</script>
</head>
<body>
<div id = "container"></div>
</body>
</html>
运行结果:
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。