6_DO事件绑定.html 496 B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <h1>hello</h1>
  10. <h1>world</h1>
  11. <script>
  12. var oH1 = document.getElementsByTagName("h1");
  13. oH1[0].onclick = function(){
  14. // console.log("hello world")
  15. // oH1[0].innerText = "你好";
  16. this.innerText = "hello world"
  17. }
  18. </script>
  19. </body>
  20. </html>