參考仿京東的條件篩選功能(jquery)-轉載 ,使用js前端代碼,點擊的時候先從所有節點移除選中樣式,然後給當前點擊的節點添加選中樣式。
使用類似
$("#filter a").click(function() {
$(this).parents("dl").children("dd").each(function() {
$('a', this).removeClass("seled");
});
$(this).attr("class", "seled");
});