最新的Web开发教程
 

jQuery - 尺寸


与jQuery,很容易用元素和浏览器窗口的尺寸来工作。


jQuery的维方法

jQuery有与尺寸工作几个重要的方法:

  • width()
  • height()
  • innerWidth()
  • innerHeight()
  • outerWidth()
  • outerHeight()

jQuery的尺寸

jQuery的尺寸


jQuery的width()height()方法

width()方法设置或返回元素(不包括宽度padding, bordermargin )。

height()方法设置或返回元素(不包括高度padding, bordermargin )。

下面的示例返回指定的宽度和高度<div>元素:

$("button").click(function(){
    var txt = "";
    txt += "Width: " + $("#div1").width() + "</br>";
    txt += "Height: " + $("#div1").height();
    $("#div1").html(txt);
});
试一试»

jQuery的innerWidth()innerHeight()方法

innerWidth()方法返回一个元素的宽度(包括padding )。

innerHeight()方法返回一个元素的高度(包括padding )。

下面的示例返回内部宽度/高度指定的<div>元素:

$("button").click(function(){
    var txt = "";
    txt += "Inner width: " + $("#div1").innerWidth() + "</br>";
    txt += "Inner height: " + $("#div1").innerHeight();
    $("#div1").html(txt);
});
试一试»

jQuery的outerWidth()outerHeight()方法

outerWidth()方法返回一个元素的宽度(包括paddingborder )。

outerHeight()方法返回一个元素的高度(包括paddingborder )。

下面的示例返回指定的外宽/高<div>元素:

$("button").click(function(){
    var txt = "";
    txt += "Outer width: " + $("#div1").outerWidth() + "</br>";
    txt += "Outer height: " + $("#div1").outerHeight();
    $("#div1").html(txt);
});
试一试»

outerWidth(true)方法返回一个元素的宽度(包括padding, bordermargin )。

outerHeight(true)方法返回一个元素的高度(包括padding, bordermargin )。

$("button").click(function(){
    var txt = "";
    txt += "Outer width (+margin): " + $("#div1").outerWidth(true) + "</br>";
    txt += "Outer height (+margin): " + $("#div1").outerHeight(true);
    $("#div1").html(txt);
});
试一试»

jQuery的更多width()height()

下面的示例返回文档(HTML文件)和窗口(浏览器的视口)的宽度和高度:

$("button").click(function(){
    var txt = "";
    txt += "Document width/height: " + $(document).width();
    txt += "x" + $(document).height() + "\n";
    txt += "Window width/height: " + $(window).width();
    txt += "x" + $(window).height();
    alert(txt);
});
试一试»

下面的示例设置指定的宽度和高度<div>元素:

$("button").click(function(){
    $("#div1").width(500).height(500);
});
试一试»

自测练习用!

练习1» 练习2» 练习3» 练习4» 练习5»


jQuery的CSS参考

对于所有的jQuery的CSS方法的完整概述,请访问我们的jQuery HTML / CSS参考