最新的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參考