js 获取计算后的样式写法及注意事项
js 获取计算后的样式写法及注意事项
发布时间:2016-12-30 来源:查字典编辑
摘要:currentStyle1.复合样式:currentStyle取不到例:background、margin2.取默认样式3.只能读复制代码代...

currentStyle

1.复合样式:currentStyle取不到

例:background、margin

2.取默认样式

3.只能读

复制代码 代码如下:

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>获取计算后的样式</title>

<style type="text/css">

#div1{ height:100px; background:#069;}

</style>

<script type="text/javascript">

//兼容

function getStyle(obj, name)

{

if(obj.currentStyle)

{

return obj.currentStyle[name];

}

else

{

return getComputedStyle(obj, false)[name];

}

}

window.onload=function()

{

var oDiv=document.getElementById('div1');

alert(getStyle(oDiv, 'width'));

alert(getStyle(oDiv, 'backgroundColor')); //注意在获取复合样式时要单独写,不能写background

};

</script>

</head>

<body>

<div id="div1"></div>

</body>

</html>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类