js 批量设置样式的几种方法

发布时间:2020-11-16编辑:脚本学堂
用js批量设置样式的几种方法: 比如用JSON、cssText或使用with方法,供大家学习参考。

用js批量设置样式的方法:
1、使用JSON/
2、使用cssText/
3、使用第三种with(不推荐使用)
 

复制代码 代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>js批量设置样式</title>
<style type="text/css">
#div1{ width:100px; height:100px; background:#069;}
</style>
<script type="text/javascript">
//1、使用JSON
function setStyle(obj,json){
for(var i in json)
{
obj.style[i]=json[i];
}
}
window.onload=function(){
var oDiv=document.getElementById('div1');
// setStyle(oDiv, {width: '200px', background: 'red'}); //第一种
// oDiv.style.cssText="width: 200px; height:300px; background:yellow;"; //2、使用cssText
//3、使用with (不推荐使用)
with(oDiv.style)
{
width='300px';
height='500px';
background='yellow';
}
};
</script>
</head>
<body>
<div id="div1"></div>
</body>
</html>

您可能感兴趣的文章:
js批量设置css样式的方法