0

我正在尝试检查页面上是否至少检查了我的一个单选按钮,它们位于不同的组中,因此我尝试创建所有组的数组并运行它们,但我似乎看不出有什么问题代码有人知道我在做什么错吗?

function atLeastOneRadio() { 
      var chx = document.getElementsByTagName('input');
      var day = new array();
      day[0] = "monday";
      day[1] = "tuesday";
      day[2] = "wednesday";
      day[3] = "thursday";
      day[4] = "friday";
      for (var i=0; i<chx.length; i++) {
        if (chx[i].type == 'radio' chx[i].name == day[i] && chx[i].checked) {
          return true;
        } 
      }
      return false;
    }
4

2 回答 2

0
for (var i=0; i<chx.length; i++) {
   for (var x=0; x< day.length;x++) {
        if (chx[i].type == 'radio' chx[i].name == day[x] && chx[i].checked) {
          return true;
        } 
    }
}
于 2013-02-03T00:04:17.930 回答
0

如果你有 jQuery,它可能会更短一些。

就像是:

//returns number of elements checked
$("input:checked").size();


//if you need to check if the name of the element is equal to something
$("input:checked").each(function(i){
    return($.inArray(this.name, days));
});
于 2013-02-03T00:16:23.013 回答