CSS DOM就是可以利用JavaScript代码该变html元素的样式。
    语法:document.getElementById(id).style.property = new style
    _

    1. <!DOCTYPE html>
    2. <html>
    3. <body>
    4. <p id="p1">阿离可爱吗?</p>
    5. <p id="p2">阿离可爱吗?</p>
    6. <script>
    7. document.getElementById("p2").style.color = "red";
    8. document.getElementById("p2").style.fontFamily = "Arial";
    9. document.getElementById("p2").style.fontSize = "larger";
    10. </script>
    11. </body>
    12. </html>

    image.png
    此外还可以使用事件:
    image.png
    点击按钮之后就会执行onclick属性里面的js函数