jQuery - 尺寸
使用 jQuery,可以轻松处理元素和浏览器窗口的尺寸。
jQuery 尺寸方法
jQuery 有几种处理尺寸的重要方法
width()
height()
innerWidth()
innerHeight()
outerWidth()
outerHeight()
jQuery 尺寸
jQuery width() 和 height() 方法
width()
方法设置或返回元素的宽度(不包括内边距、边框和外边距)。
height()
方法设置或返回元素的高度(不包括内边距、边框和外边距)。
以下示例返回指定 <div>
元素的宽度和高度
示例
$("button").click(function(){
var txt = "";
txt += "宽度: " + $("#div1").width() + "</br>";
txt += "高度: " + $("#div1").height();
$("#div1").html(txt);
});
亲自试一试 »
jQuery innerWidth() 和 innerHeight() 方法
innerWidth()
方法返回元素的宽度(包括内边距)。
innerHeight()
方法返回元素的高度(包括内边距)。
以下示例返回指定 <div>
元素的内部宽度/高度
示例
$("button").click(function(){
var txt = "";
txt += "内部宽度: " + $("#div1").innerWidth() + "</br>";
txt += "内部高度: " + $("#div1").innerHeight();
$("#div1").html(txt);
});
亲自试一试 »
jQuery outerWidth() 和 outerHeight() 方法
outerWidth()
方法返回元素的宽度(包括内边距和边框)。
outerHeight()
方法返回元素的高度(包括内边距和边框)。
以下示例返回指定 <div>
元素的外部宽度/高度
示例
$("button").click(function(){
var txt = "";
txt += "外部宽度: " + $("#div1").outerWidth() + "</br>";
txt += "外部高度: " + $("#div1").outerHeight();
$("#div1").html(txt);
});
亲自试一试 »
outerWidth(true)
方法返回元素的宽度(包括内边距、边框和外边距)。
outerHeight(true)
方法返回元素的高度(包括内边距、边框和外边距)。
示例
$("button").click(function(){
var txt = "";
txt += "外部宽度(+外边距): " + $("#div1").outerWidth(true) + "</br>";
txt += "外部高度(+外边距): " + $("#div1").outerHeight(true);
$("#div1").html(txt);
});
亲自试一试 »
jQuery 更多 width() 和 height()
以下示例返回文档(HTML 文档)和窗口(浏览器视口)的宽度和高度
示例
$("button").click(function(){
var txt = "";
txt += "文档宽度/高度: " + $(document).width();
txt += "x" + $(document).height() + "\n";
txt += "窗口宽度/高度: " + $(window).width();
txt += "x" + $(window).height();
alert(txt);
});
亲自试一试 »
以下示例设置指定 <div>
元素的宽度和高度
jQuery 练习
jQuery CSS 参考
有关所有 jQuery CSS 方法的完整概述,请访问我们的 jQuery HTML/CSS 参考。