私は顧客の調査に関する作業をしています。彼らが「はい」を選択した場合は、選択された方法の情報に&の連絡先の優先メソッドを要求する追加の質問が続きます。ラジオボタンを選択した場合はJavascriptを入力してください。追加入力が必要です
HTML
<b>May we contact you about your experience?</b>
<br/>
<input type="radio" name="Contact" id="ContactYes" value="Yes" required />
<label for="ContactYes">Yes</label>
<input type="radio" name="Contact" id="ContactNo" value="No" />
<label for="ContactNo">No</label>
<br />
<br />
<b>Select your preferred method of contact:</b>
<br/>
<input type="radio" name="FormOfContact" id="Phone" value="Phone" />
<label for="Phone">Phone</label>
<input type="radio" name="FormOfContact" id="Email" value="Email" />
<label for="Email">Email</label>
は基本的に、私が知りたいのですが、私が作ることができるか「FormOfContact」接触されると、ユーザが「はい」を選択する唯一の必須フィールドがありますか?