javascript apply方法
JavaScript的每个function对象都有一个apply方法
语法如下:funtion.apply([thisObj[,argArray]])
功能说明:将一个函数的对象上下文从初始的上下文改变为由thisObj指定的新对象,用来模拟多态
/**method 声明**/ function Object1(name) { this.name = name; this.fun1 = function(){ alert("this is first method !"); }; this.fun2 = function() { alert("this is second method !"); }; } function Object2(name) { Object1.apply(this,[name]); //Object1.apply(this,["hahahhah"]); } /**method 调用**/ var o2 = new Object2("china"); o2.fun1(); //alert("this is first method!"); o2.fun2(); //alert("this is second method!"); alert(o2.name+"==================apply method!");//alert(china=============apply method!);
相关推荐
nmgxzm00 2020-11-10
ifconfig 2020-10-14
hhanbj 2020-11-17
zfszhangyuan 2020-11-16
古叶峰 2020-11-16
一个智障 2020-11-15
jipengx 2020-11-12
81427005 2020-11-11
xixixi 2020-11-11
游走的豚鼠君 2020-11-10
苗疆三刀的随手记 2020-11-10
Web卓不凡 2020-11-03
小飞侠V 2020-11-02
帕尼尼 2020-10-30
爱读书的旅行者 2020-10-26
帕尼尼 2020-10-23
杏仁技术站 2020-10-23
淼寒儿 2020-10-22