代码及注释:
javascript
const options = document.querySelectorAll('.option')
options.forEach((item1, index, arr) => { //循环每个元素都绑定点击事件
item1.addEventListener('click', () => {
arr.forEach(item2 => { //先把所有元素的active类名删掉
item2.classList.remove('active')
})
item1.classList.add('active') //给点击元素添加active类名
})
})
知识点:
1.排他思想口诀:先干到所有人,再复活自己
2.添加元素:element.classList.add('类名')
3.删除元素:element.classList.remove('类名')
4.数组循环array.forEach((item, index, arr) => { })