| 12345678910111213141516171819202122232425262728 |
- <!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>
- // 立即执行函数
- // 将一个匿名函数赋值给一个变量
- // var foo = function(){
- // console.log("hello world");
- // }
- // foo();
- // 实现立即执行函数的两种方法
- (function(){
- console.log("hello world");
- }());
- // 或者
- (function(){
- console.log("hello world");
- })();
- </script>
- </body>
- </html>
|