• JS中获取页面单选框radio和复选框checkbox中当前选中的值


    JS中获取页面单选框radio和复选框checkbox中当前选中的值

     

    单选框:单选框的name值全部相同

                 页面有一组单选框的元素<td><input type="radio name="radioid">满意</td>  <td><input type="radio" name="radioid">基本满意</td>  

                  var radio=document.getElementsByName("radio");

                  var selectvalue=null;   //  selectvalue为radio中选中的值

                 for(int i=0;i<radio.length;i++){

                        if(radio[i].checked==true) {

                                 selectvalue=radio[i].value;

                                 break;

                       }

                }

    多选框:

                   页面有一组单选框的元素<td><input type="checkbox" name="radioid">满意</td>  <td><input type="radio" name="radioid">基本满意</td>  

                  var radio=document.getElementByName("radio");

                  var selectvalue=new Array();   //  selectvalue为radio中选中的值

                  for(int i=0;i<radio.length;i++){

                        if(radio[i].checked==true) {

                                 selectvalue.push(radio[i].value);

                        }

                 }

               或者

             

                var radio=document.getElementByName("radio");

                  var selectvalue="";   //  selectvalue为radio中选中的值

                 for(int i=0;i<radio.length;i++){

                        if(radio[i].checked==true) {

                                 selectvalue=selectvalue+radio[i].value+","; 

                       }

                }

  • 相关阅读:
    使用springboot缓存
    Something wrong with EnCase v8 index search results
    Is it a full physical image???
    FB的新专利竟要监看使用者的脸
    How to image a CD/DVD ROM and generate hash value
    Mobile game forensics
    物理提取大绝招”Advanced ADB”???
    How to trace the Geolocation of network traffic
    App forensics
    专做手机取证的大厂被人给黑了
  • 原文地址:https://www.cnblogs.com/apache-x/p/5362435.html
Copyright © 2020-2023  润新知