博客列表 >1. 实例演示classList对象 2. 使用blur事件进行表单非空验证

1. 实例演示classList对象 2. 使用blur事件进行表单非空验证

Time
Time原创
2022年04月09日 10:30:22349浏览

classList对象

示例代码:

  1. <style>
  2. .box {
  3. background-color: yellow;
  4. color: red;
  5. }
  6. .active {
  7. border: 1px solid #333;
  8. }
  9. .em {
  10. background-color: rgb(0, 238, 255);
  11. color: rgb(255, 0, 34);
  12. }
  13. .bgc {
  14. background-color: greenyellow;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="box">php中文网</div>
  20. <script>
  21. let box = document.querySelector(".box");
  22. console.log(box);
  23. //添加class
  24. box.classList.add("active");
  25. //判断是否有class
  26. console.log(box.classList.contains("box"));
  27. //替换class
  28. box.classList.replace("box", "em");
  29. //移除class
  30. box.classList.remove("em");
  31. //toggle 有去无加
  32. box.classList.toggle("bgc");
  33. </script>

blur事件进行表单非空验证

示例代码:

  1. //焦点移除密码不能为空
  2. document.forms.login.password.onblur = function () {
  3. if (this.value.length === 0) {
  4. alert("密码不能为空");
  5. return false;
  6. }
  7. };
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议