私のプログラムを簡単に説明する:
選択ボックスが 3 つある
1 番目のボックスでユーザーが選択した値が 2 で、2 番目のボックスでユーザーが選択した値が 3 (オプション値) の場合、3 番目の選択ボックスには配列が表示されます。
このコードは機能しませんが、アイデアを示しています:
if ($('#firstbox').click(function() { ($(this).val() == '2'); } &&
$('#secondbox').click(function() { ($(this).val() == '3'); }) {
// Array Display here (not included the coding here, because there is no issue with this coding.. seems working fine)
}
if文に含まれるコードと、式をチェックするための&&演算について教えてください。