ドロップダウンの選択に基づいて条件付きでフォーム フィールドを表示/非表示にするために、PHP で jQuery スクリプトを使用しています。
スクリプトは次のとおりです。
//Hide the field initially
$("#hide1").hide();
//Show the text field only when the third option is chosen - this doesn't
$('#project-type').change(function() {
if ($("#project-type").val() == "Value 1") {
$("#hide1").show();
}
else {
$("#hide1").hide();
}
});
値の配列をに追加できるようにしたいif ($("#project-type").val() == "Value 1")
ので、値が 5 つある場合、値 1 と 3 が選択されたときに特定のフィールドを表示し、他の値は選択しないようにします。いくつかの方法を試しましたが、すべての値が隠しフィールドを示しています。
どんな助けでも大歓迎です。