获取到页面中所有的 checkbox 怎么做

var aInput = document.querySelectorAll('input')
    let len = aInput.length
    checkboxList = []
    while (len--) {
      if(aInput[len].type=='checkbox'){
        checkboxList.push(aInput[len])
      }
    }

  

posted @ 2021-02-04 21:36  流弊的小涛  阅读(116)  评论(0编辑  收藏  举报