js获取页面引用的css样式表中的属性值方法(推荐)

前端之家收集整理的这篇文章主要介绍了js获取页面引用的css样式表中的属性值方法(推荐)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如下所示:

if (node.style[property]) { return node.style[property]; } else if (node.currentStyle) { return node.currentStyle[property]; } else if (document.defaultView && document.defaultView.getComputedStyle) { var style = document.defaultView.getComputedStyle(node,null); return style.getPropertyValue(property); } return null; }</pre>

以上这篇js获取页面引用的css样式表中的属性方法(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/js/46457.html

猜你在找的JavaScript相关文章