显示无!重要的是需要使用jQuery来重写

前端之家收集整理的这篇文章主要介绍了显示无!重要的是需要使用jQuery来重写前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何知道如何使用jQuery覆盖下面提到的CSS的人?
.actionButton.single-pet
        {
            display: none !important;
        }

这不行:$(‘.actionButton.single-pet’).show();

解决方法

$('.actionButton.single-pet').attr("style","display: inline !important");

设置CSS显示:inline!important ;. display:inline是显示的默认属性.你需要!重要的是覆盖以前的!重要的.

请注意!重要不应经常使用.阅读How to override !important?接受的答案了解更多详情.

更新:我们不能使用.css(),因为它不支持!重要. http://bugs.jquery.com/ticket/11173更多细节;似乎是一个错误.

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

猜你在找的jQuery相关文章