js_practice_2.html 847 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title></title>
  6. <style>
  7. h1 {
  8. width: 600px;
  9. height: 40px;
  10. font-size: 36px;
  11. line-height: 40px;
  12. margin: 0 auto;
  13. border: 1px solid red;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <h1 id="welcome">欢迎来到千锋教育成都校区学习&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h1>
  19. <script>
  20. let content = '马化腾,fuck you, 操你大爷,日你二爷'
  21. // let pattern = new RegExp('马化腾|[日操]', 'g')
  22. let pattern = /fuck|马化腾|[日操]/gi
  23. content = content.replace(pattern, '*')
  24. alert(content)
  25. const welcome = document.getElementById('welcome')
  26. function move() {
  27. let str = welcome.textContent
  28. str = str.substring(1) + str.charAt(0)
  29. welcome.textContent = str
  30. }
  31. setInterval(move, 500)
  32. </script>
  33. </body>
  34. </html>