网络编程
位置:首页>> 网络编程>> JavaScript>> js获取css的各种样式并且设置他们的方法

js获取css的各种样式并且设置他们的方法

作者:jingxian  发布时间:2024-04-18 10:10:33 

标签:js,获取,css样式

js原生获取css样式,并且设置,看似简单,其实并不简单,我们平时用的ele.style.样式,只能获取内嵌的样式,但是我们写的样式基本都在style属性里面;

这里我们就需要:

下面这个代码主要是设置为了兼容IE这孙子;


function getStyle(element, attr) {
if (element.currentStyle) {
return element.currentStyle[attr];// * IE的获取元素的方法
} else {
return getComputedStyle(element, null)[attr];
}
}

平时我们一般可以用 getComputedStyle(元素,null)[属性]

js获取css的各种样式并且设置他们的方法

js获取css的各种样式并且设置他们的方法

 js获取css的各种样式并且设置他们的方法

来源:http://www.cnblogs.com/xiao-he-shang/archive/2017/08/21/7407294.html

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com