123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <script>
- /*
- 立即执行函数
- 函数定义完,立即被调用,这种函数叫做立即执行函数
- 立即执行函数往往只会执行一次(因为没有变量保存它,也没有函数名)
- */
- // (function(){
- // alert('我是一个匿名函数');
- // })();
- (function(a,b){
- console.log('a='+a);
- console.log('b='+b);
- })(12,34);
- </script>
- </head>
- <body>
-
- </body>
- </html>
|