1. 程式人生 > >mui 通過js獲取單選框的值

mui 通過js獲取單選框的值

<html>
 <head>
  <script type ="text/javascript">
  function change()
  {
   varNew=document.getElementsByName("form1");
   varstrNew;
   for(vari=0;i<New.length;i++)
   {
    if(New.item(i).checked) 

    {
     strNew=New.item(i).getAttribute("value"); 
     alert(strNew );  // item()方法:返回集合中的當前項
     break;
    }
    else
    {
     continue;
    }
   }  
  }
  </script>
 </head>
 
 <body>
  <input type ="radio" id = "form1" name = "form1" value = "1" onchange ="change();">選擇1
  <input type ="radio" id = "form1" name = "form1" value = "2" onchange ="change();">選擇2
 </body>
</html>

如果是ajax獲取資料庫資料生成的多個選擇題,可通過迴圈命名生成name 和value

js也是通過迴圈獲取值,利用某個選擇框.checked來判斷是否選中答案。