javascript 函数不同于其他的语言,每个函数都是作为一个对象被维护和运行的。通过函数对象的性质,可以很方便的将一个函数赋值给一个变量或者将函数作为参数传递。在继续讲述之前,先看一下函数的使用语法: 以下是引用片段: function func1(…){…} var func2=function(…){…}; var func3=function func4(…){…}; var func5=new Function(); 复制代码 代码如下: <br><br>// 1, 方法调用模式 <BR>// 当一个函数被保存为对象的一个属性时,我们称之它为该对象的一个方法,那么this被绑定到该对象上 <BR>var myObject={ <BR>name : "myObject" , <BR>value : 0 , <BR>increment : function(num){ <BR>this.value += typeof(num) === 'number' ? num : 0; <BR>return this; <BR>} , <BR>toString : function(){ <BR>return '[Object:' + this.name + ' {value:' + this.value + '}]'; <BR>} <BR>} <BR>alert(myObject.increment(10).increment(20).toString()); // [Object:myObject {value:30}] <br><br><BR>// 2, 函数调用模式 <BR>// 当一个函数并非一个对象的函数时,那么它被当作一个函数来调用,this被绑定到全局对象上。这是语言设计的一个错误。倘若语言设计正确,当内部函数调用时,this应该仍然绑定到外部函数的this变量上 <BR>var myObject={ <BR>name : "myObject" , <BR>value : 0 , <BR>increment : function(num){ <BR>this.value += typeof(num) === 'number' ? num : 0; <BR>return this; <BR>} , <BR>toString : function(){ <BR>return '[Object:' + this.name + ' {value:' + this.value + '}]'; <BR>}, <BR>getInfo: function(){ <BR>var self=this; <BR>return (function(){ <BR>//return this.toString(); // 内部匿名函数中this指向了全局对象window, 输出 [object Window] <BR>return self.toString(); // 定义一个变量selft并给它赋值为this,那么内部函数通过该变量访问到指向该对象的this <BR>})(); <BR>} <BR>} <BR>alert(myObject.increment(10).increment(20).toString()); // [Object:myObject {value:30}] <br><br><BR>// 3, 构造器调用模式 <BR>// JavaScript是一门基于原型继承的语言, 这意味着对象可以直接从其他对象继承属性, 该语言是无类别的。 <BR>// 如果一个函数前面带上new来调用,那么将创建一个隐藏连接到该函数的prototype成员的新对象,同时this将会被绑定到构造函数的实例上。 <BR>function MyObject(name){ <BR>this.name = name || 'MyObject'; <BR>this.value=0; <BR>this.increment = function(num){ <BR>this.value += typeof(num) === 'number' ? num : 0; <BR>}; <BR>this.toString = function(){ <BR>return '[Object:' + this.name + ' {value:' + this.value + '}]'; <BR>} <BR>this.target = this; <BR>} <br><br>MyObject.prototype.getInfo = function(){ <BR>return this.toString(); <BR>} <br><br>// 同时创建一个MyObject.prototype对象,myObject继承了MyObject.prototype的所有的属性, this绑定到了MyObject的实例上 <br><br>var myObject = new MyObject(); <BR>myObject.increment(10); <BR>alert(myObject.value); //10 <br><br>var otherObject = new MyObject(); <BR>otherObject.increment(20); <BR>alert(otherObject.value); //20 <br><br>alert(myObject.target===myObject); // ture <BR>alert(myObject.target.getInfo()); // [Object:MyObject {value:10}] <br><br><BR>// 4, Apply 调用模式 <BR>// JavaScript是一门函数式的面向对象编程语言,所以函数可以拥有方法。 函数的apply方法,如同该对象拥有此方法,此时this指向该对象。 <BR>// apply接收两个参数,第一个是要绑定的对象(this指向的对象),第二个是参数数组. <BR>function MyObject(name){ <BR>this.name = name || 'MyObject'; <BR>this.value = 0; <BR>this.increment = function(num){ <BR>this.value += typeof(num) === 'number' ? num : 0; <BR>}; <BR>this.toString=function(){ <BR>return '[Object:'+this.name+' {value:'+this.value+'}]'; <BR>} <BR>this.target=this; <BR>} <BR>function getInfo(){ <BR>return this.toString(); <BR>} <BR>var myObj = new MyObject(); <BR>alert(getInfo.apply(myObj)); //[Object:MyObject {value:0}], this指向myObj <BR>alert(getInfo.apply(window)); //[object Window], this指向window <br><br><BR>// for and while <BR>function func(a,b){ <BR>alert(a); // 1 <BR>alert(b); // 2 <br><br>for(var i=0;i<arguments.length;i++){ <BR>alert(arguments[i]); // 1, 2, 1, 2, 3 <BR>} <br><br>var i=0; <BR>while(i<arguments.length){ <BR>alert(arguments[i]); // 1, 2, 1, 2, 3 <BR>i=i+1; <BR>} <BR>} <BR>func(1,2,3); <br><br>var i=0 <BR>for (i=0;i<=10;i++) { <BR>document.write("The number is " + i + "<br/>") <BR>} <br><br>