大神们可以帮我看看为什么t-hello 不能显示吗 谢谢
(function () {
var n="李四"; //新变量
function person(name) { //传递参数
var _this={};
_this._name=name; //传递参数
_this.say=function () {
alert("p-hello"+_this._name+n);//传递参数 //加入新变量
};
return _this;
}
window.person=person;
}());
(function () {
function teacher(name) {
var _this=person(name);
var superHello=_this.say;
_this.say=function () {
superHello.call(_this);
alert("t-hello"+_this._name+n);
};
return _this;
}
window.teacher=teacher;
}());
var t=teacher("张三"); //传递参数
t.say();