私は、各li値に特定の説明がある単純なフィルタシステムを作成しています。 現在、IF文を使用していますが、スイッチに変換したいと思います。これは可能ですか?クリック時の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)'と大文字と小文字が区別されます。例: – abhishekkannojia
ものと仮定します。 '$( '#uitleg')。html( '
' + $(this).text()+ '
');' – Tushar