0
我有以下選擇:如何通過選定的選項設置彈出菜單中的更改?
<form>
<select id="poSelect" >
<option selected disabled>Choose here</option>
<option id="buyeroption" value="100101">I am a Buyer</option>
<option id="garageoption" value="100102">I am a Garage</option>
</select>
<label>Full Name</label>
<input type="text" />
<label>Email Address</label>
<input type="email" />
<label>Password</label>
<input type="password" />
<label id="industrylabel" >Select Your Brand</label>
<select id="industryoption">
<option selected disabled>Select</option>
<option value="Renault">Renault</option>
<option value="Pegaut">Pegaut</option>
<option value="Citroen">Citroen</option>
</select>
<div class="form-check-label">
<input id="send_updates" type="checkbox" />
<label for="send_updates">Send me occasional email updates</label>
</div>
所以我需要的是,當用戶選擇我是一個買方標籤「選擇你的品牌」和產業選項選擇要隱藏,但是當我點擊我的車庫出現。
你能解釋一下我們簡單,輸出 – Gowtham
的正確的代碼段或圖像也許這(非功能性)JSFiddle可以讓你瞭解所需的邏輯。 – Feathercrown