12_this.html 528 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. <button id="btn">按钮</button>
  10. <script>
  11. // 获取元素
  12. var btn = document.getElementById("btn");
  13. // 绑定事件
  14. btn.onclick = function(){
  15. // this 指向当前点击的元素 (谁触发的事件,this就指向谁的)
  16. console.log(this);
  17. }
  18. </script>
  19. </body>
  20. </html>