点击列表的时候,点击的那个样式高亮其他的不亮
css添加一个变色的类
.highlight{
background-color: yellow;
}
js
$(function(){
$('.dht div').click(function(){
$(this).addClass('highlight').siblings().removeClass('highlight');
})
});
转载自:https://blog.csdn.net/qq_36309066/article/details/53940830