首页 > 其他 > 详细

classList属性修改类

时间:2020-09-01 22:57:21      阅读:643      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      #demo {
        width: 100px;
        height: 100px;
        background-color: pink;
      }

      .box {
        border: 1px solid blue;
      }

      .text {
        color: red;
      }
    </style>
  </head>
  <body>
    <div id="demo" class="box text one">测试</div>
    <script>
      const demo = document.getElementById(demo)

      //   //   demo.className += ‘ one‘

      //   demo.className = ‘box‘

      //   demo.classList.add(‘one‘)  // 在原来类名的基础上,添加一个新的类名
      //   demo.classList.remove(‘text‘) // 在原来的基础上,删除一个类名
      //   demo.classList.toggle(‘one‘) // 在原来的基础上,判断这个类名本来是否存在.如果存在就移除掉,如果不存在就加上
    </script>
  </body>
</html>

 

classList属性修改类

原文:https://www.cnblogs.com/fsg6/p/13599283.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!