我有一个带有一堆列表项的无序列表。我在其点击中设置了所选<li>
的背景:
$(this).animate({
backgroundColor: '#0000FF'
}, 'fast');
当我点击另一个<li>
时,我想更改其backgroundColor
属性,但我希望<li>
的其余部分默认返回另一种颜色。这样,看起来我正在改变选定状态。
答案 0 :(得分:5)
答案 1 :(得分:0)
$('ul li').click(function() {
$(this).animate({backgroundColor:"#0000ff"},'fast')
.siblings().animate({backgroundColor:"#000000"},'fast'); // or whatever other color you want
});
答案 2 :(得分:0)
我会使用类和 CSS过渡的混合:
$('li').click(function(){)
$('li.active').removeClass('active');
$(this).addClass('active');
})
li{background:#fff; -webkit-transition:all 0.25s linear; -moz-transition:all 0.25s linear;}
li.active{background:#00f;}
答案 3 :(得分:0)
$('li').each.click(function(){
$(this).css("backgroundColor", "");
});