次のように、非表示の入力フィールドを持つ Web フォームがあります。
<input id="requiredFields" name="requiredFields" type="hidden" value="firstname,lastname,email,phone">
,location
次のようにjQueryを使用して、特定の条件に基づいて「 」を追加および削除したい:
$('input[name="locationstatus"]:radio').on("change", function() {
if ($('input[name="locationstatus"]:radio:checked').val() == 'Yes') {
/* need syntax to append text ',location' to #requiredFields string */
}
else {
/* need syntax to remove text ',location' from #requiredFields string */
}
});
ありがとう