元素的样式设置六种方法
1、对象.style
2、对象.className
3、对象.setAttribute(“style”)
4、对象.setAttribute(“class”)
5、对象.style.setProperty(“CSS属性”, “CSS属性值”)
6、对象.style.cssText
<style>
.pink {
background-color: pink;
}
</style>
<body>
<div id="box">盒子</div>
<button id="change">变色</button>
</body>
在js文件中获取元素
当点击按钮时给div盒子添加背景颜色
var box = document.getElementById("box");
document.getElementById('change').addEventListener('click',function(){
}
设置的六种方法操作
在事件的处理程序中(函数内)书写
//1、对象.style
box.style.backgroundColor = 'pink'
// 2、对象.className
box.className = 'pink'
// 3、对象.setAttribute("style")
box.setAttribute('style','background-color:pink')
// 4、对象.setAttribute("class")
box.setAttribute('class','pink')
//5、对象.style.setProperty("CSS属性", "CSS属性值")
box.style.setProperty('background-color','pink')
// 6、对象.style.cssText
box.style.cssText = 'background-color:pink'