如何使用jquery修改css中带有,important的样式属性
发布网友
发布时间:2022-04-26 10:19
我来回答
共2个回答
热心网友
时间:2022-04-06 13:57
important优先级比内联都高。。
要是想修改的话直接替换class吧。。修改是修改不了的。。
或者你把important用jquery写在内联样式里也行。。
热心网友
时间:2022-04-06 15:15
$(".token").css({
'cssText': 'height: 36px !important;'
});
如果多个
$(".token").css({
'cssText': 'height: 36px !important;border: solid 1px #e5e5e5;line-height: 34px;background-color: #fff;padding: 0 15px; float: right !important;'
});