1.addClass
css中:
<style type="text/css">
.chColor {background: #267cb7;color:white;
}
</style>
js中:
$("#nm_p").addClass("chColor"); // 追加样式
$("#nm_p").removeClass("chColor"); //移除
2.css
$("#61dh a").hover(
function(){
$(this).css('color','#999');
},
function(){
$(this).css('color','#123456');
});
走好选择的路,别选择好走的路