基础教程
鸟哥教程(niaoge.com)
HTML/CSS
HTML基础教程
HTML5基础教程
HTML参考手册
SVG 教程
CSS 教程
CSS 参考手册
CSS3教程
Bootstrap3 教程
Bootstrap4 教程
Font Awesome图标
JavaScript
JavaScript 教程
JavaScript 参考手册
jQuery 教程
AJAX 教程
JSON 教程
AngularJS 教程
ReactJS 教程
NodeJS 教程
服务端开发
C++ 教程
Golang 教程
C 语言教程
PHP 教程
C# 教程
LINQ 教程
Lua 教程
Ruby 教程
Rust 教程
Linux 教程
R 语言教程
Docker 教程
Scala 教程
MatLab 教程
Erlang 教程
Java教程
Java 教程
SpringBoot 教程
JDBC 教程
JSP 教程
Servlet 教程
Maven 教程
Spring 教程
Python教程
Python 教程
Pandas教程
Numpy教程
Django 教程
Matplotlib 教程
Flask 教程
移动端
Swift 教程
Kotlin 教程
数据库
SQL 教程
MongoDB 教程
SQLite 教程
PostgreSQL 教程
MySql 教程
Redis 教程
Elasticsearch 教程
经验笔记
在线工具
首页
jQuery 教程
jQuery 尺寸
jQuery 获取DIV各种尺寸示例
源代码:
点击运行
<!DOCTYPE html> <html> <title>jQuery 获取DIV各种尺寸示例 - 基础教程(cainiaojc.com)</title> <head> <style> div { height: 200px; width:500px; margin: 5px; padding: 10px; margin-bottom: 15px; border: 3px solid lightgreen; background-color: rgba(144, 238, 144, .4); } </style> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script> $(document).ready(function(){ let div = $("div"); $("button").click(function(){ var txt = ""; txt += "div的宽度: " + div.width() + "<br>"; txt += "div 宽度,包含内边距: " + div.innerWidth() + "<br>"; txt += "div 宽度,包含内边距、边框: " + div.outerWidth() + "<br>"; txt += "div 宽度,包含内边距、边框、外边距: " + div.outerWidth(true) + "<br><br>"; txt += "div的高度: " + div.height() + "<br>"; txt += "div 高度,包含内边距: " + div.innerHeight() + "<br>"; txt += "div 的高度(包括内边距、边框): " + div.outerHeight() + "<br>"; txt += "div 的高度(包括内边距、边框、外边距): " + div.outerHeight(true) + "<br>"; div.html(txt); }); }); </script> </head> <body> <div></div> <button>显示DIV尺寸</button> <p> width()-返回元素的宽度。</p> <p> innerWidth()-返回元素的宽度(包括内边距)= width+padding。</p> <p> outerWidth()-返回元素的宽度(包括内边距、边框)= width+padding+border。</p> <p> outerWidth(true)-返回元素的宽度(包括内边距,边框和边距)= width+padding+border+margin。</p> <hr> <p> height()-返回元素的高度。</p> <p> innerHeight()-返回元素的高度(包括内边距)= height+padding。</p> <p> outerHeight()-返回元素的高度(包括内边距、边框)= height+padding+border。</p> <p> outerHeight(true)-返回元素的高度(包括内边距、边框和外边距)= height+padding+border+margin。</p> </body> </html>
运行结果
Copyright ©2021
菜鸟教程
cainiaojc.com