12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- // 匿名函数
- // setTimeout(function(){
- // console.log(111)
- // },1000)
- // oBox.onclick = function(){
- // console.log(222)
- // }
- // var fn = function(){
- // console.log(111)
- // }
-
- // fn();
- // 立即执行函数
- // 函数定义完立即执行
- (function(){
- console.log("123");
- })();
-
- </script>
- </body>
- </html>
|