<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        
        <style type="text/css">
            .bgred{
                background: red;
            }
            .bgblue{
                background: skyblue;
            }
        </style>
    </head>
    <body>
        <h1>helloworld</h1>
        <script type="text/javascript">
            var h1 = document.querySelector('h1')
//            h1.style.borderBottom = '11px solid #eee'
            h1.className = 'bgred'
            
        </script>
    </body>
</html>

 

相关文章:

  • 2021-07-29
  • 2021-08-19
  • 2021-11-21
  • 2021-09-14
  • 2021-12-24
  • 2022-03-01
  • 2022-12-23
  • 2021-06-04
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案