1. 程式人生 > >a標簽中的this

a標簽中的this

head 綁定 title ati 過去 his lan ack test

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>a標簽綁定點擊事件</title>
  <script>
    function
test(i) { console.log(i) } </script> </head> <body> <a href="javascript:;" onclick="test(this)">輸出的this是a元素</a> <a href="javascript:test(this)">輸出的this是window</a> </body> </html>

  由於項目中有位大哥(卓大哥)說拿不到this,氣得我差點暈過去,於是專門看了下,原來原來。。。。

  G~G~Study。

a標簽中的this