我有一个按钮<button id="subs1">test</button>
和一个div
<div class="subsystem subhide">
<h3 style="text-align: center; font-size: 30px; font-weight: normal;">Electronics</h3>
<p>Lorem</p>
</div>
在css文件中,类.subhide定义为
.subhide {
display: none;
}
而我想开始工作的jQuery代码是
jQuery('#subs1').on('click', function(){
jQuery('.subsystem').removeClass('subhide');
});
当单击按钮时什么也没发生,那是为什么?
提前致谢!
最佳答案
在样式表中,将其更改为:.subsystem.subhide {
display: none;
}
.subsystem {
display: anything;
}
它应该工作