js 函数function用法

javascript 函数不同于其他的语言,每个函数都是作为一个对象被维护和运行的。通过函数对象的性质,可以很方便的将一个函数赋值给一个变量或者将函数作为参数传递。在继续讲述之前,先看一下函数的使用语法:


以下是引用片段:
function func1(…){…}  
var func2=function(…){…};  
var func3=function func4(…){…};  
var func5=new Function();   


[javascript]  view plain  copy
 print ?
  1. <script type="text/javascript">  
  2.   
  3.     // 1, 方法调用模式  
  4.     // 当一个函数被保存为对象的一个属性时,我们称之它为该对象的一个方法,那么this被绑定到该对象上  
  5.     var myObject={   
  6.         name : "myObject" ,   
  7.         value : 0 ,   
  8.         increment : function(num){   
  9.             this.value += typeof(num) === 'number' ? num : 0;   
  10.             return this;  
  11.         } ,   
  12.         toString : function(){   
  13.             return '[Object:' + this.name + ' {value:' + this.value + '}]';   
  14.         }   
  15.     }   
  16.     alert(myObject.increment(10).increment(20).toString());     // [Object:myObject {value:30}]  
  17.   
  18.   
  19.     // 2, 函数调用模式  
  20.     // 当一个函数并非一个对象的函数时,那么它被当作一个函数来调用,this被绑定到全局对象上。这是语言设计的一个错误。倘若语言设计正确,当内部函数调用时,this应该仍然绑定到外部函数的this变量上  
  21.     var myObject={   
  22.         name : "myObject" ,   
  23.         value : 0 ,   
  24.         increment : function(num){   
  25.             this.value += typeof(num) === 'number' ? num : 0;   
  26.             return this;  
  27.         } ,   
  28.         toString : function(){   
  29.             return '[Object:' + this.name + ' {value:' + this.value + '}]';   
  30.         },   
  31.         getInfo: function(){   
  32.             var self=this;   
  33.             return (function(){   
  34.                 //return this.toString();   // 内部匿名函数中this指向了全局对象window, 输出 [object Window]   
  35.                 return self.toString();     // 定义一个变量selft并给它赋值为this,那么内部函数通过该变量访问到指向该对象的this  
  36.             })();   
  37.         }   
  38.     }   
  39.     alert(myObject.increment(10).increment(20).toString());     // [Object:myObject {value:30}]  
  40.   
  41.   
  42.     // 3, 构造器调用模式   
  43.     // JavaScript是一门基于原型继承的语言, 这意味着对象可以直接从其他对象继承属性, 该语言是无类别的。   
  44.     // 如果一个函数前面带上new来调用,那么将创建一个隐藏连接到该函数的prototype成员的新对象,同时this将会被绑定到构造函数的实例上。   
  45.     function MyObject(name){   
  46.         this.name = name || 'MyObject';   
  47.         this.value=0;   
  48.         this.increment = function(num){   
  49.             this.value += typeof(num) === 'number' ? num : 0;   
  50.         };   
  51.         this.toString = function(){   
  52.             return '[Object:' + this.name + ' {value:' + this.value + '}]';   
  53.         }   
  54.         this.target = this;   
  55.     }   
  56.       
  57.     MyObject.prototype.getInfo = function(){   
  58.         return this.toString();   
  59.     }   
  60.   
  61.     // 同时创建一个MyObject.prototype对象,myObject继承了MyObject.prototype的所有的属性, this绑定到了MyObject的实例上   
  62.   
  63.     var myObject = new MyObject();   
  64.     myObject.increment(10);   
  65.     alert(myObject.value);  //10   
  66.       
  67.     var otherObject = new MyObject();   
  68.     otherObject.increment(20);   
  69.     alert(otherObject.value);   //20   
  70.       
  71.     alert(myObject.target===myObject);  //  ture   
  72.     alert(myObject.target.getInfo());   // [Object:MyObject {value:10}]  
  73.   
  74.       
  75.     // 4, Apply 调用模式   
  76.     // JavaScript是一门函数式的面向对象编程语言,所以函数可以拥有方法。 函数的apply方法,如同该对象拥有此方法,此时this指向该对象。   
  77.     // apply接收两个参数,第一个是要绑定的对象(this指向的对象),第二个是参数数组.   
  78.     function MyObject(name){   
  79.         this.name = name || 'MyObject';   
  80.         this.value = 0;   
  81.         this.increment = function(num){   
  82.             this.value += typeof(num) === 'number' ? num : 0;   
  83.         };   
  84.         this.toString=function(){   
  85.             return '[Object:'+this.name+' {value:'+this.value+'}]';   
  86.         }   
  87.         this.target=this;   
  88.     }   
  89.     function getInfo(){   
  90.         return this.toString();   
  91.     }   
  92.     var myObj = new MyObject();   
  93.     alert(getInfo.apply(myObj));    //[Object:MyObject {value:0}],   this指向myObj   
  94.     alert(getInfo.apply(window));   //[object Window],  this指向window   
  95.   
  96.   
  97.     // for and while  
  98.     function func(a,b){    
  99.         alert(a);  // 1  
  100.         alert(b);  // 2  
  101.           
  102.         for(var i=0;i<arguments.length;i++){    
  103.             alert(arguments[i]);    // 1, 2, 1, 2, 3  
  104.         }    
  105.           
  106.         var i=0;  
  107.         while(i<arguments.length){  
  108.             alert(arguments[i]);    // 1, 2, 1, 2, 3  
  109.             i=i+1;  
  110.         }  
  111.     }    
  112.     func(1,2,3);     
  113.       
  114.     var i=0  
  115.     for (i=0;i<=10;i++) {  
  116.         document.write("The number is " + i + "<br/>")  
  117.     }  
  118.       
  119. </script>  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值