2
我正在製作一個簡單的過濾系統,其中每個li值都有一定的描述。 目前它正在使用IF語句,但我想將其轉換爲開關。這可能嗎?li jquery點擊:如果要切換
在此先感謝。
我的代碼:
$("ul.simplefilter").on('click', 'li', function (e) {
if($(this).text() == "Iedereen"){
$("#uitleg p").remove();
$("#uitleg").append("<p>Iedereen</p>");
}
else if($(this).text() == "Coach studentenparticipatie"){
$("#uitleg p").remove();
$("#uitleg").append("<p>Coach studentenparticipatie</p>");
}
else if($(this).text() == "Communicatie"){
$("#uitleg p").remove();
$("#uitleg").append("<p>Communicatie</p>");
}
else if($(this).text() == "Coördinator"){
$("#uitleg p").remove();
$("#uitleg").append("<p>Coördinator</p>");
}
})
'switch($(this).text)'and case cases'case「Iedereen」:'等 – abhishekkannojia
假設的東西。嘗試:'$('#uitleg')。html('
'+ $(this).text()+'
');' – Tushar