JavaScript中clientWidth,offsetWidth,scrollWidth的区别


Posted in Javascript onJanuary 25, 2021

一、概念

它们都是Element的属性,表示元素的宽度:

Element.clientWidth    内容+内边距-滚动条-----不包括边框和外边距  == 可视内容
Element.scrollWidth    内容+内边距+溢出尺寸-----不包括边框和外边距  ==实际内容
Element.offsetWidth   元素的宽度(内容+内边距+边框+滚动条)==整体,整个控件

二、举例

1、仅有横向滚动条的情况

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>测试scrollWidth、clientWidth、offsetWidth</title>
 <style type="text/css">
  body, html {
   margin: 0px;
   padding: 0px;
  }

  #father {
   width: 300px;
   overflow: auto;
   padding: 10px;
   background: rebeccapurple;
   border: 10px solid red;
   margin: 20px;
  }

  #child {
   height: 100px;
   width: 1000px;
   padding: 10px;
   border: 20px solid #ffcc99;
   margin: 30px;
  }
 </style>
</head>
<body>

<div id="father">
 <div id="child"></div>
</div>

<script type="text/javascript">
 var child = document.getElementById("child");
 console.log("child.width:", window.getComputedStyle(child).width); //内容的宽度:1000px
 console.log("child.clientWidth:", child.clientWidth); //内容+内边距-滚动条-----不包括边框和外边距 == 可视内容 1020px
 console.log("child.scrollWidth:", child.scrollWidth); //内容+内边距+溢出尺寸-----不包括边框和外边距 ==实际内容 1020px
 console.log("child.offsetWidth:", child.offsetWidth); //元素的宽度(内容+内边距+边框+滚动条)==整体,整个控件  1060px

 var father = document.getElementById("father");
 console.log("father.width:", window.getComputedStyle(father).width); //内容的宽度:300px
 console.log("father.clientWidth:", father.clientWidth); //内容+内边距-滚动条-----不包括边框和外边距 == 可视内容 320px
 console.log("father.scrollWidth:", father.scrollWidth); //内容+内边距+溢出尺寸-----不包括边框和外边距 ==实际内容 1100px
 console.log("father.offsetWidth:", father.offsetWidth); //元素的宽度(内容+内边距+边框+滚动条)==整体,整个控件  340px
</script>
</body>
</html>

仅有横向滚动条的情况时,父元素收受到子元素宽度的影响,其他比较特别的是scrollWidth。

父元素的scrollWidth是:子元素的content+padding+border+子元素一边的margin+父元素一边的padding。

2、有横向滚动条和竖向滚动条的情况

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>测试scrollWidth、clientWidth、offsetWidth</title>
 <style type="text/css">
  body, html {
   margin: 0px;
   padding: 0px;
  }

  #father {
   height: 50px;
   width: 300px;
   overflow: auto;
   padding: 10px;
   background: rebeccapurple;
   border: 10px solid red;
   margin: 20px;
  }

  #child {
   height: 100px;
   width: 1000px;
   padding: 10px;
   border: 20px solid #ffcc99;
   margin: 30px;
  }
 </style>
</head>
<body>

<div id="father">
 <div id="child"></div>
</div>

<script type="text/javascript">
 var child = document.getElementById("child");
 console.log("child.width:", window.getComputedStyle(child).width); //内容的宽度:1000px
 console.log("child.clientWidth:", child.clientWidth); //内容+内边距-滚动条-----不包括边框和外边距 == 可视内容 1020px
 console.log("child.scrollWidth:", child.scrollWidth); //内容+内边距+溢出尺寸-----不包括边框和外边距 ==实际内容 1020px
 console.log("child.offsetWidth:", child.offsetWidth); //元素的宽度(内容+内边距+边框+滚动条)==整体,整个控件  1060px

 var father = document.getElementById("father");
 console.log("father.width:", window.getComputedStyle(father).width); //内容的宽度:285px
 console.log("father.clientWidth:", father.clientWidth); //内容+内边距-滚动条-----不包括边框和外边距 == 可视内容 305px
 console.log("father.scrollWidth:", father.scrollWidth); //内容+内边距+溢出尺寸-----不包括边框和外边距 ==实际内容 1100px
 console.log("father.offsetWidth:", father.offsetWidth); //元素的宽度(内容+内边距+边框+滚动条)==整体,整个控件  340px
</script>
</body>
</html>

父元素的width为:父元素的content宽度-滚动条的宽度(大约为15px)

父元素的clientWidth为:父元素的content宽度+父元素padding宽度-滚动条宽度(大约为15px)

以上就是Element中clientWidth,offsetWidth,scrollWidth的区别的详细内容,更多关于clientWidth,offsetWidth,scrollWidth的区别的资料请关注三水点靠木其它相关文章!

Javascript 相关文章推荐
js 实现 input type=&quot;file&quot; 文件上传示例代码
Aug 07 Javascript
JavaScript显示当然日期和时间即年月日星期和时间
Oct 29 Javascript
一些老手都不一定知道的JavaScript技巧
May 06 Javascript
JS实现仿QQ面板的手风琴效果折叠菜单代码
Sep 11 Javascript
Angular2 (RC5) 路由与导航详解
Sep 21 Javascript
纯js实现图片匀速淡入淡出效果
Aug 22 Javascript
bootstrap-table实现服务器分页的示例 (spring 后台)
Sep 01 Javascript
小程序识别身份证,银行卡,营业执照,驾照的实现
Nov 05 Javascript
Vue实现验证码功能
Dec 03 Javascript
javascript设计模式 ? 策略模式原理与用法实例分析
Apr 21 Javascript
在vue中实现echarts随窗体变化
Jul 27 Javascript
Javascript中window.name属性详解
Nov 19 Javascript
vue keep-alive的简单总结
Jan 25 #Vue.js
JS实现简易日历效果
Jan 25 #Javascript
javascript代码实现简易计算器
Jan 25 #Javascript
js简单粗暴的发布订阅示例代码
Jan 23 #Javascript
JS中循环遍历数组的四种方式总结
Jan 23 #Javascript
vue form表单post请求结合Servlet实现文件上传功能
Jan 22 #Vue.js
原生js实现自定义难度的扫雷游戏
Jan 22 #Javascript
You might like
php源代码安装常见错误与解决办法分享
2013/05/28 PHP
php数组声明、遍历、数组全局变量使用小结
2013/06/05 PHP
php四种基础算法代码实例
2013/10/29 PHP
PHP实现的memcache环形队列类实例
2015/07/28 PHP
php使用escapeshellarg时中文被过滤的解决方法
2016/07/10 PHP
POST一个JSON格式的数据给Restful服务实例详解
2017/04/07 PHP
Laravel 错误提示本地化的实现
2019/10/22 PHP
Array对象方法参考
2006/10/03 Javascript
JavaScript语言中的Literal Syntax特性分析
2007/03/08 Javascript
对采用动态原型方式无法展示继承机制得思考
2009/12/04 Javascript
jquery中输入验证中一个不错的效果
2010/08/21 Javascript
Jquery判断IE6等浏览器的代码
2011/04/05 Javascript
js中判断文本框是否为空的两种方法
2011/07/31 Javascript
jquerymobile checkbox及时刷新才能获取其准确值
2012/04/14 Javascript
js对文章内容进行分页示例代码
2014/03/05 Javascript
file控件选择上传文件确定后触发的js事件是哪个
2014/03/17 Javascript
js实现发送验证码后的倒计时功能
2015/05/28 Javascript
javascript如何操作HTML下拉列表标签
2015/08/20 Javascript
使用pcs api往免费的百度网盘上传下载文件的方法
2016/03/17 Javascript
使用原生js封装的ajax实例(兼容jsonp)
2017/10/12 Javascript
Vue-cli3项目配置Vue.config.js实战记录
2018/07/29 Javascript
解决vue单页路由跳转后scrollTop的问题
2018/09/03 Javascript
axios实现文件上传并获取进度
2020/03/25 Javascript
react quill中图片上传由默认转成base64改成上传到服务器的方法
2019/10/30 Javascript
微信小程序上传帖子的实例代码(含有文字图片的微信验证)
2020/07/11 Javascript
vue实现多个echarts根据屏幕大小变化而变化实例
2020/07/19 Javascript
Python自定义线程池实现方法分析
2018/02/07 Python
对Python 除法负数取商的取整方式详解
2018/12/12 Python
python开头的coding设置方法
2019/08/08 Python
python打造爬虫代理池过程解析
2019/08/15 Python
Python 批量刷博客园访问量脚本过程解析
2019/08/30 Python
Python之Numpy的超实用基础详细教程
2019/10/23 Python
日本最新流行服饰网购:Nissen
2016/07/24 全球购物
北美最大的手工艺品零售商之一:Michaels Stores
2019/02/27 全球购物
2014年语文教师工作总结
2014/12/18 职场文书
python控制台打印log输出重复的解决方法
2021/05/14 Python