首页 前端知识 js中元素样式设置的六种方法

js中元素样式设置的六种方法

2024-02-11 10:02:41 前端知识 前端哥 238 499 我要收藏

元素的样式设置六种方法

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'
转载请注明出处或者链接地址:https://www.qianduange.cn//article/1714.html
标签
评论
发布的文章

Jquery-day01

2024-02-25 11:02:14

Jquery的基本认识

2024-02-25 11:02:11

浏览器调用摄像头

2024-02-25 11:02:09

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!