getComputedStyle()使用方法

Posted 花落为谁惜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getComputedStyle()使用方法相关的知识,希望对你有一定的参考价值。

javascript中如果要获取元素样式。只能直接获取在元素内设置的样式。那么问题来了,我们怎么获取不是直接设置在元素内的样式呢?可用以下方法:

方法:

<div id="one"></div>

<script>

var one=document.getElementById("one");

window.getComputedStyle(one,null);//第一个位置为需要获取元素,第二个位置一般为null

alert(one.style.width);//可弹出不是元素内设置的style样式

</script>

以上是关于getComputedStyle()使用方法的主要内容,如果未能解决你的问题,请参考以下文章

getComputedStyle方法的那些事

getComputedStyle方法的那些事

在 IE 11 中使用 getComputedStyle

getComputedStyle()使用方法

document.defaultView.getComputedStyle

JS中currentStyle和getComputedStyle