How do I make a text field/select option visible/invisible by selecting a radio button option in HTML?
问题 <!DOCTYPE html> <html> <body> <form> /*yes or no radio button option*/ Deduction: <input type="radio" name="option" value="yes">Yes <input type="radio" name="option" value="no">No <br> /* text field for the amount if yes is selected, if no is selected the amount*/ /* and the affiliate selection shouldn't be showing*/ Amount:<input type="text" name="amount"> <br> <select> <option value="affiliate">Select Affiliate</option> <option value="x">x</option> <option value="y">y</option> </select> <br