红绿灯 案例
```html !doctype html>代码调试>>>:
divEle = document.getElementsByClassName('c1')[0];
divEle.classList.remove('bg_red'); ##红色变成绿色
divEle.classList.add('bg_red'); //绿色变为红色
divEle.classList.toggle('bg_red'); //多执行这个代码,会发现红色会出现一次消失一次。
divEle.classList.contains('bg_red');// 包不包含这个标签