判断复选框是否被选中

来源:互联网 发布:centos ping不通网关 编辑:程序博客网 时间:2024/04/29 15:19

function  checkValue()  {     var input_list = document.getElementsByTagName("input");  for (i=0; i< input_list.length; i ++) {  thisInput = input_list[i];  if(thisInput.type.toLowerCase()=="checkbox"){   if(getCheckedValue(document.getElementsByName(thisInput.name)) == ""){    thisInput.focus();    window.scrollBy(0, -30);    alert("该项不能为空!");    return false;   }  } }   return true;}

 

function getCheckedValue(radioObj) { if(!radioObj)  return ""; var radioLength = radioObj.length; if(radioLength == undefined) if(radioObj.checked)  return radioObj.value; else  return ""; for(var i = 0; i < radioLength; i++ ) {  if(radioObj[i].checked){   return radioObj[i].value;  } } return "";}