一、实验题目
html实现选择框的全选和反选
二、实验代码
全选和反选 兴趣爱好
全选听音乐玩游戏做运动吃美食看电影
let all = document.getElementById("all")let input_arr = document.querySelectorAll("ul>input")all.onclick = function(){if(all.checked == true){for(input of input_arr){input.checked = true}}else{for(input of input_arr){input.checked = false}}}