我想根據是否選擇其他選項來選擇是否選擇。例如,如果有選項1-6,並且他們沒有在第一個選擇框中選擇選項1,那麼在該選項框和表單中的任何其他選項框中,則不能選擇選項6。啓用或禁用選項
我環顧四周,但一切都是關於點擊一個按鈕來實現的。
這是代碼我有(我也曾嘗試的onclick)
<script type="text/javascript">
function makeDisable(){
var x=document.getElementById("mySelect2");
x.disabled=true
}
function makeEnable(){
var x=document.getElementById("mySelect2");
x.disabled=false
}</script>
<form>
<select class="mySelect" id="mySelect">
<option onchange="makeEnable()" value="Enable list">Apple</option>
<option onchange="makeDisable()" value="Disable list">Banana</option>
<option id="mySelect2" disabled="true">Orange</option>
</select>
</form>
我避免做類似的東西笑。但是,謝謝你,我猜這會是那樣的! –