Using CSS !important with JavaScript

前端 未结 3 730
不知归路
不知归路 2021-02-20 01:35



        
3条回答
  •  星月不相逢
    2021-02-20 02:04

    Try this:

    function myFunction() {
        var x = document.querySelectorAll("#testDiv p.example");
        x[0].style.setProperty("background-color", "red", "important");
    }
    

提交回复
热议问题