Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

jQuery - 尺寸


使用 jQuery,可以轻松处理元素和浏览器窗口的尺寸。


jQuery 尺寸方法

jQuery 有几种处理尺寸的重要方法

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

jQuery 尺寸

jQuery Dimensions


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> 元素的宽度和高度

示例

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

jQuery 练习

通过练习测试自己

练习

使用 jQuery 方法将 <div> 的高度和宽度设置为 500 像素。

$("div").().();

开始练习


jQuery CSS 参考

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


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.