| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #box {
- width: 300px;
- height: 300px;
- background: #00f;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <script>
- var box = document.getElementById("box");
- // box.onclick = function() {
- // console.log(this);
- // }
- // box.onclick = function() {
- // setInterval(function(){
- // console.log(this)
- // },1000)
- // }
- // var obj = {
- // a:"1",
- // b:function() {
- // console.log(this)
- // }
- // }
- // obj.b();
- function fn1() {
- console.log(this);
- }
- fn1();
- </script>
- </body>
- </html>
|