任何知道如何使用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更多细节;似乎是一个错误.