1
2
3
4
5
6
7
8
9
10
11
12
/* ---示例代码----*/
 
function echo (){
 
    var a="this is a example";
     
    alert("hello world "+a);
 
}
 
/* ---示例代码----*/