在Jquery .css({height:“300px!important”})中无效

时间:2016-01-01 12:56:55

标签: javascript jquery

在JQuery中

我无法使用!important

设置Property值

这是代码.css({height: "300px !important"})

1 个答案:

答案 0 :(得分:2)

您好我找到了解决方案:

.css({height: "300px !important"})

.css("cssText", "height: 300px !important;");