#aside-expander
当浏览器宽度小于 1200 像素时,我正在使用以下 CSS 来隐藏我的标签并显示一个标签,以便用户在需要时查看它。
@media screen and (max-width: 1200px) {
aside#global-widget-base {
display: none !important;
}
#aside-expander {
display: inline !important;
}
}
当在元素上使用单击处理程序#aside-expander
以再次显示时,不会显示该元素。我认为这是由于在样式元素上使用了 !important。
$('#aside-expander').click(function() {
$("#global-widget-base").css("display", "inline");
});
我想知道是否有人能够提供关于如何按需显示此元素的解决方案?我已经尝试将 !important 应用于我的 jQuery .css 函数,但无济于事。