之前檢查單選按鈕是否被選擇時,我使用的是 if else 一個一個的檢查其 checked 屬性。 數組
這樣雖然能夠,可是當一組 radio 有不少個時,就很麻煩了。 spa
能夠經過 getElementsByName 獲得全部 name 相同的 radio,再使用循環語句遍歷數組的方式檢查每個 radio。 code
下面是範例代碼: get
//取得name=’os’的一組radio var os = document.getElementsByName("os"); //使用for循環+length屬性檢查radio的checked屬性 for(var i=0; i<os.length; i++) { if(os[i].checked == true) { return true; } }