JS获取单选与多选按纽值示例

发布时间:2020-12-20编辑:脚本学堂
分享下js获取单选与多选按钮值的代码,有需要的朋友做个参考。

例子,求单选按纽的值,适用单选项及多选项。
未选返回false;有选择项,返回选项值。
 

复制代码 代码示例:
function CheckRadio(theRadio){
    var theRadioLen = theRadio.length;
    var theRadioValue = false;
    if (theRadioLen == undefined){
        if (theRadio.checked){
            theRadioValue = theRadio.value;
        }
    }else{
       
  for (theRadioI=0;theRadioI<theRadioLen;theRadioI++){
            if (theRadio[theRadioI].checked){
                theRadioValue = theRadio[theRadioI].value;
                break;
            }
        }
    }
    return theRadioValue;
}

theRadio这个取值:表单名.元素名称。