width() 方法设置或返回元素的宽度(不包括内边距、边框或外边距)。
height() 方法设置或返回元素的高度(不包括内边距、边框或外边距)。
innerWidth() 方法返回元素的宽度(包括内边距)。
innerHeight() 方法返回元素的高度(包括内边距)。
outerWidth() 方法返回元素的宽度(包括内边距和边框)。
outerHeight() 方法返回元素的高度(包括内边距和边框)。
outerWidth(true) 方法返回元素的宽度(包括内边距、边框和外边距)。
outerHeight(true) 方法返回元素的高度(包括内边距、边框和外边距)。
$(document).width()与$(window).width()返回文档(HTML 文档)和窗口(浏览器视口)的宽度和高度。
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <title></title> 6 <link rel="stylesheet" href="css/all.css" /> 7 <style type="text/css"> 8 div { margin: 10px; padding: 10px; width: 300px; height: 200px; border: 10px solid #ccc; } 9 </style> 10 <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script> 11 <script type="text/javascript" src="js/all.js"></script> 12 </head> 13 14 <body> 15 <div></div> 16 <div></div> 17 <div></div> 18 <div></div> 19 <div></div> 20 <div></div> 21 <div></div> 22 <div></div> 23 <div></div> 24 </body> 25 </html> 26 <script type="text/javascript"> 27 var s1 =‘width()是‘ + $(‘div‘).width() +‘px,因为width()不包含margin,padding,border‘; 28 var s2 =‘innerWidth()是‘ + $(‘div‘).innerWidth() +‘px,因为包含了padding,左右各10px‘; 29 var s3 =‘outerWidth()是‘ + $(‘div‘).outerWidth() +‘px,因为包含了padding(左右名10px)与border(左右名10px)‘; 30 var s4 =‘outerWidth(true)是‘ + $(‘div‘).outerWidth(true) +‘px,包含了padding,margin,border,左右名10px‘; 31 var s5 =‘document文档的width()是‘ + $(document).width() +‘px‘; 32 var s6 =‘window窗口的width()是‘ + $(window).width() +‘px‘; 33 alert(s1); 34 alert(s2); 35 alert(s3); 36 alert(s4); 37 alert(s5); 38 alert(s6); 39 alert(‘当没有垂直滚动条的时候,$(document).width()与$(window).width()在我的电脑上的宽度是1366,而在有垂直滚动条的时候,在我的电脑上的宽度是1349。并且当调整浏览器窗口的大小的时候,这两个值也会相应的发生变化。‘); 40 </script>
时间: 2024-10-16 22:42:49