我无法为下面的行选择具有特定值类的元素
我的 HTML 是
<ul class=nav>
<li class="home">
<a href="">HOME </a>
</li>
<li class="bye">
<a href="">BYE </a>
</li>
</ul>
<script>
$("ul.nav li").click(function(e) {
$('.home').addClass('.newhome').removeClass('.home');
alert("done");
});
</script>
我的 CSS 是
li.newhome {
background: #678fef no-repeat;
color:#fff;
}
li.home{
background: #666 no-repeat;
这是一个JSFiddle。