2.根据type="checkbox"选中所有checkbox
const checkList = document.querySelectorAll('input[type="checkbox"]');
3.修改checkbox选中状态
// 选中
document.querySelector('input[type="checkbox"]').checked = true;
// 取消选中
document.querySelector('input[type="checkbox"]').checked = false;
4.获取checkbox的value
const curValue = document.querySelector('input[type="checkbox"]').value;