gpt4 book ai didi

jquery - 使用 jquery 覆盖 !important 样式

转载 作者:行者123 更新时间:2023-12-01 02:10:23 25 4
gpt4 key购买 nike

我有一个带有类的元素

display:none !important;

但是我想使用jquery来显示元素

$('#returning_customer_check').click(function(){
if($(this).is(':checked')) {
$('#returning_customer').show();
$('#new_customer').hide();
customer = 1;
} else {
$('#returning_customer').hide();
$('#new_customer').show();
customer = 0;
}
});

这不起作用,有没有办法用 jquery 覆盖 css?

最佳答案

.show() 转换为 style="display:block"

因此,您可以进行短期修复:

$(this).attr("style", "display:block !important");

http://jsfiddle.net/ew7hpp6w/

但是我建议完全删除 !important 。如果您发现更重要理由将其删除,那么它显然没有被正确使用。

关于jquery - 使用 jquery 覆盖 !important 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31249562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com