$('.comment').hide(2000);
这会在两秒钟后淡入淡出隐藏班级评论。有没有一种简单的方法可以通过添加额外的类来防止带有“评论”类的 div 褪色?
<div class="comment">This text hides</div>
<div class="comment nohide">This text should not hide</div>
添加 nohide 类并不能阻止它隐藏。我可能最终会创建一个新课程,但我想我会问。
$('.comment').hide(2000);
这会在两秒钟后淡入淡出隐藏班级评论。有没有一种简单的方法可以通过添加额外的类来防止带有“评论”类的 div 褪色?
<div class="comment">This text hides</div>
<div class="comment nohide">This text should not hide</div>
添加 nohide 类并不能阻止它隐藏。我可能最终会创建一个新课程,但我想我会问。