如何在jquery中包含!important

前端之家收集整理的这篇文章主要介绍了如何在jquery中包含!important前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图添加!重要在css属性使用jQuery like
$("tabs").css('height','650px;!important');

但!重要没有效果。如何在jquery中包含!important?

解决方法

显然可以在jQuery中做到这一点:
$("#tabs").css("cssText","height: 650px !important;");

Src:http://bugs.jquery.com/ticket/2066

原文链接:https://www.f2er.com/jquery/183749.html

猜你在找的jQuery相关文章