0
我有兩個選擇標籤現在我想要的是,只有一個應該從兩個選擇標籤中選擇一個用戶應該只選擇一個,如果用戶從兩個標籤中選擇,那麼它應該顯示錯誤,只有一個應該選擇選擇標籤狀態檢查與JavaScript?
我所用
var $institution=document.getElementById('institutionselect').value;
var $section=document.getElementById('sectionselect').value;
if($institution.selectedIndex = 0 && $section.selectedIndex = 0){
alert('please select one amongst two');
return false;
}else if($institution.selectedIndex = null && $section.selectedIndex = null){
alert('please select one amongst two');
return false;
}
請糾正碼幫忙,謝謝!