//设置style的属性 element.setAttribute('style', 'height: 100px !important'); //使用setProperty 如果要设置!important,推荐用这种方法设置第三个参数,属性名不用驼峰写法 element.style.setProperty('height', '300px', 'important'); //设置cssText element.style.cssText = 'height: 100px !important'; $("#test").css("cssText", "height:300px !important");
$("#test").css("style", "height:300px !important");//无效