Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用下面的 css 来隐藏一个元素:
.pds-pd-link { display: none !important; }
使用 jQuery 我可以在 css .pds-pd-link 上启用显示吗
像$(.pds-pd-link).css("display","");什么?
$(.pds-pd-link).css("display","");
简而言之,是的。
或者,您可以使用以下 toshow或hide元素:
show
hide
$(.pds-pd-link).show(); $(.pds-pd-link).hide();
或者您甚至可以使用该toggle方法在两者之间自动切换:
toggle
$(.pds-pd-link).toggle();
虽然你可以这样做:
$(.pds-pd-link).css("display","none");
我会建议:
$(.pds-pd-link).hide();
这应该工作
$('.pds-pd-link').css('cssText', 'display: block !important');