東麻布 自由奔放 グルメイベント

document.addEventListener(‘DOMContentLoaded’, function () { const otherInput = document.querySelector(‘[name=”postsonota”]’); const radioButtons = document.querySelectorAll(‘input[name=”あなたの選択項目名”]’); function toggleRequired() { let isOtherSelected = false; radioButtons.forEach(radio => { if (radio.checked && radio.value === ‘その他’) { isOtherSelected = true; } }); if (isOtherSelected) { otherInput.setAttribute(‘required’, ‘required’); } else { otherInput.removeAttribute(‘required’); } } radioButtons.forEach(radio => { radio.addEventListener(‘change’, toggleRequired); }); toggleRequired(); // 初期状態チェック });