我有这个小 jQuery 代码工作,但有一件事我不知道。在我点击了我的 infocontent-menu 后,h1:hover 就消失了。如何恢复悬停功能?
HTML:
<div class="infocontent"><h1>Wat?</h1></div>
<div class="infocontent"><h1>Van/ voor wie?</h1></div>
<div class="infocontent"><h1>Akties</h1></div>
<div class="infocontent"><h1>Met wie?</h1></div>
CSS:
.infocontent {
width: 120px;
height: 120;
float: left;
}
.infocontent h1 {
width: 100%;
font-size: 24px;
text-transform: uppercase;
color: #999;
}
.infocontent h1:hover { color: #000; }
jQuery:
$('.infocontent h1:first').css('color', '#000');
$(".infocontent h1").on("click", function() {
$('.infocontent h1').css('color', '#999');
$(this).css('color', '#000');
});