标签:
Example
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta http-equiv="X-UA-Compatible" content="IE=edge">
6 <title>Demo</title>
7 </head>
8 <body>
9
10 <script type="text/javascript">
11 window.onload = function(){
12 // 初始化调用一次 myfun,参数为 c ,c 就是最下边的 function c,是一个方法
13 myfun(c);
14 }
15 // 使用 var ** = function(){} 定义一个方法,其中的参数为 newfun
16 var myfun = function(newfun){
17 alert("我是方法");
18 // newfun 使用() 结尾,js自动把 newfun 转为方法调用一次
19 newfun();
20 }
21 function c(){
22 alert("我是参数");
23 }
24 </script>
25 </body>
26 </html>
标签:
原文地址:http://www.cnblogs.com/hzj680539/p/5138376.html