码迷,mamicode.com
首页 > Web开发 > 详细

第十四节 jQuery获取元素尺寸

时间:2020-03-14 20:12:11      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:第十四   margin   rip   javascrip   oct   src   title   col   box   

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Document</title>
 6     <script type="text/javascript" src="../jquery-1.12.4.min.js"></script>
 7     <script type="text/javascript">
 8         $(function(){
 9             alert($(.box).width());
10             alert($(.box).height());
11             //  获取属性宽和高的值
12             
13             alert($(.box).innerWidth());
14             alert($(.box).innerHeight());
15 
16             // 包括padding的width和height值;
17             
18             alert($(.box).outerWidth());
19             alert($(.box).outerHeight());
20             // 包括padding和border的width和height值,即盒子的真实尺寸;
21             
22             alert($(.box).outerWidth(true));
23             alert($(.box).outerHeight(true));
24             // 包括padding和border和margin的width和height值;
25             
26         });
27     </script>
28     <style type="text/css">
29         .box{
30             height: 200px;
31             width: 200px;
32             padding: 20px;
33             border: 10px solid #000;
34             margin: 20px;
35             background-color: gold;
36         }
37     </style>
38 </head>
39 <body>
40     <div class="box"></div>
41 </body>
42 </html>

 

第十四节 jQuery获取元素尺寸

标签:第十四   margin   rip   javascrip   oct   src   title   col   box   

原文地址:https://www.cnblogs.com/kogmaw/p/12493739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!