当前位置:   article > 正文

web蓝桥杯真题:冰墩墩心情刻度尺

web蓝桥杯真题:冰墩墩心情刻度尺

代码:

  1. // TODO: 待补充代码
  2. BingDunDun.className='BingDunDun not-satisfied'
  3. range.onchange = (e) => {
  4. let value = Number(e.target.value); // value 进度条的值
  5. // TODO: 待补充代码
  6. if(value == 25) {
  7. BingDunDun.className='BingDunDun a-little-unsatisfied'
  8. } else if(value == 50) {
  9. BingDunDun.className='BingDunDun ordinary'
  10. } else if(value == 75) {
  11. BingDunDun.className='BingDunDun satisfied'
  12. } else if(value == 100) {
  13. BingDunDun.className='BingDunDun great'
  14. } else {
  15. BingDunDun.className='BingDunDun not-satisfied'
  16. }
  17. };

考察:

元素添加类名:element.className='class1 class2'   

此外,

行内样式操作:element.style.width = '250px'

给元素添加样式:element.classList.add(newClassName)      

给元素移除样式:element.classList.remove(oldClassName)

className和classList.add的区别:

前者是直接替换原来的类名,后者是在原类名基础上再加一个类名

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/222624
推荐阅读
相关标签
  

闽ICP备14008679号