js 获取 html元素的样式有三种方式:style、getComputedStyle 和 currentStyle等

本文主要是介绍js 获取 html元素的样式有三种方式:style、getComputedStyle 和 currentStyle等,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!



js 获取 html元素的样式有三种方式:style、getComputedStyle 和 currentStyle等。区别在于:

(1)style 只能获取行间样式,但能设置样式。

(2)getComputedStyle 和 currentStyle 能够获取 行间样式/非行间样式/浏览器默认样式,但存在浏览器兼容问题,且不能设置样式。

一、element.style 获取行间样式,以及设置样式

  1. <!DOCTYPE HTML>  
  2. <html lang="zh-cn">  
  3. <head>  
  4. <meta charset="utf-8" />  
  5. <title>Javascript</title>  
  6. <style>  
  7. *{margin: 0;padding: 0;}  
  8. #box{width: 100px;height: 100px;margin-left: 100px;}  
  9. </style>  
  10. </head>  
  11. <body>  
  12. <div id="box" style="background-color:#ccc;margin-top:100px;"></div>  
  13. <script>  
  14. window.onload = function(){   
  15.     var oBox = document.getElementById('box');  
  16.         console.log(oBox.style.width);          //结果为:100px  
  17.     console.log(oBox.style.background); //结果:rgb(204,204,204),但ie下为空  
  18.     console.log(oBox.style.backgroundColor); //结果:rgb(204,204,204)或#ccc  
  19.     console.log(oBox.style.margin);     //结果为空  
  20.     console.log(oBox.style.marginTop);  //结果:100px  
  21.     oBox.style.height = '120px';        //设置样式  
  22. }  
  23. </script>  
  24. </body>  
  25. </html>  
<!DOCTYPE HTML>
<html lang="zh-cn">
<head>
<meta charset="utf-8" />
<title>Javascript</title>
<style>
*{margin: 0;padding: 0;}
#box{width: 100px;height: 100px;margin-left: 100px;}
</style>
</head>
<body>
<div id="box" style="background-color:#ccc;margin-top:100px;"></div>
<script>
window.onload = function(){	var oBox = document.getElementById('box');console.log(oBox.style.width);          //结果为:100pxconsole.log(oBox.style.background);	//结果:rgb(204,204,204),但ie下为空console.log(oBox.style.backgroundColor); //结果:rgb(204,204,204)或#cccconsole.log(oBox.style.margin);		//结果为空console.log(oBox.style.marginTop);	//结果:100pxoBox.style.height = '120px';		//设置样式
}
</script>
</body>
</html>

style总结:

 

(1)对于复合属性(如background),假设行间设置了样式:background-color:#333,不能通过 element.style.background 来获取(见上面例子)。

(2)css属性使用驼峰法,如 backgroundColor、marginTop等。

(3)不同浏览器,一些 css 属性值可能会发生转换,如例子中的 background-color,标准浏览器会转换为 rgb 形式。

二、getComputedStyle 获取css属性值

 

  1. <!DOCTYPE HTML>  
  2. <html lang="zh-cn">  
  3. <head>  
  4. <meta charset="utf-8" />  
  5. <title>Javascript</title>  
  6. <style>  
  7. #box{width: 100px;height: 100px;margin-left: 100px;}  
  8. </style>  
  9. </head>  
  10. <body>  
  11. <div id="box" style="background-color:#ccc;margin-top:100px;"></div>  
  12. <script>  
  13. window.onload = function(){   
  14.     var oBox = document.getElementById('box');  
  15.     var a = getComputedStyle(oBox, null)['width']; // 100px  
  16.     var b = getComputedStyle(oBox, null).getPropertyValue('backgroundColor'); //chrome为null, ie为空  
  17.     var c = getComputedStyle(oBox, null)['backgroundColor'];// rgb(204,204,204)  
  18.     var d = getComputedStyle(oBox,null)['padding'];// chrome为0px, ie为空  
  19.     console.log(a, b, c, d);  
  20. }  
  21. </script>  
  22. </body>  
  23. </html>  
<!DOCTYPE HTML>
<html lang="zh-cn">
<head>
<meta charset="utf-8" />
<title>Javascript</title>
<style>
#box{width: 100px;height: 100px;margin-left: 100px;}
</style>
</head>
<body>
<div id="box" style="background-color:#ccc;margin-top:100px;"></div>
<script>
window.onload = function(){	var oBox = document.getElementById('box');var a = getComputedStyle(oBox, null)['width']; // 100pxvar b = getComputedStyle(oBox, null).getPropertyValue('backgroundColor'); //chrome为null, ie为空var c = getComputedStyle(oBox, null)['backgroundColor'];// rgb(204,204,204)var d = getComputedStyle(oBox,null)['padding'];// chrome为0px, ie为空console.log(a, b, c, d);
}
</script>
</body>
</html>

 

getComputedStyle总结:

(1)标准浏览器,ie9+以上支持 getComputedStyle。

(2)对于复合属性:使用 getPropertyValue 获取属性值时,不能使用驼峰写法,如:例子中的 getpropertyValue('backgroundColor') 无法正确获得值,而必须写成 background-color。

(3)另外,以下写法也正确:getComputedStyle(oBox, null)['backgroundColor']、getComputedStyle(oBox, null)['background-color'], 以及 getComputedStyle(oBox, null).backgroundColor 等。

(4)当没有设置某个属性值时,chrome 会读取浏览器该属性的默认值,而 ie9+ 下结果为空。如例子中的 padding。

(5)getComputedStyle 第二个参数为”伪类“,一般用不着,设置为 null 即可。

三、IE 下 currentStyle 获取css 属性值

还是上面的例子:

 

[javascript] view plain copy print?

  1. <script>  
  2. window.onload = function(){   
  3.     var oBox = document.getElementById('box');  
  4.     var a = oBox.currentStyle['width']; // 100px  
  5.     var b = oBox.currentStyle['background-color'];  // #ccc  
  6.     var c = oBox.currentStyle['backgroundColor'];   // #ccc  
  7.     var d = oBox.currentStyle.backgroundColor;     // #ccc  
  8.     //var e = oBox.currentStyle.background-color;  错误  
  9.     var e = oBox.currentStyle['padding'];       // 0px  
  10.     console.log(a, b, c, d, e);  
  11. }  
  12. </script>  
<script>
window.onload = function(){	var oBox = document.getElementById('box');var a = oBox.currentStyle['width']; // 100pxvar b = oBox.currentStyle['background-color'];	// #cccvar c = oBox.currentStyle['backgroundColor'];	// #cccvar d = oBox.currentStyle.backgroundColor;	   // #ccc//var e = oBox.currentStyle.background-color;  错误var e = oBox.currentStyle['padding'];		// 0pxconsole.log(a, b, c, d, e);
}
</script>

 

currentStyle 总结:

(1)只在 IE 下支持(网上 opera 也支持,但未测)。

(2)注意 ['backgroundColor']、['background-color'] 和 .backgroundColor 等写法。

(3)未设置的属性值,currentStyle 会读取浏览器默认值,如例子中的 padding。

四、不同浏览器下,获取 css 属性值 的兼容写法

 

[javascript] view plain copy print?

  1. function getStyle(oElement, sName){  
  2.     return oElement.currentStyle ? oElement.currentStyle[sName] : getComputedStyle(oElement, null)[sName];  
  3. }  

 

这篇关于js 获取 html元素的样式有三种方式:style、getComputedStyle 和 currentStyle等的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1012730

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)

内核启动时减少log的方式

内核引导选项 内核引导选项大体上可以分为两类:一类与设备无关、另一类与设备有关。与设备有关的引导选项多如牛毛,需要你自己阅读内核中的相应驱动程序源码以获取其能够接受的引导选项。比如,如果你想知道可以向 AHA1542 SCSI 驱动程序传递哪些引导选项,那么就查看 drivers/scsi/aha1542.c 文件,一般在前面 100 行注释里就可以找到所接受的引导选项说明。大多数选项是通过"_

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧