JS 模拟类的内部如何才能调用自身方法
functionTest(){Test.prototype.aa=functon(obj){....};Test.prototype.bbb=function(obj){...
function Test(){
Test.prototype.aa = functon(obj){ .... };
Test.prototype.bbb = function(obj){
obj.animate(
{"marginLeft":+Hsize+"px"},
this.speed,
function(){
this.aaa(obj); /*这里要如何处理才能调用 aa 方法?? 目前这样写是错误的。*/
}
);
}
} 展开
Test.prototype.aa = functon(obj){ .... };
Test.prototype.bbb = function(obj){
obj.animate(
{"marginLeft":+Hsize+"px"},
this.speed,
function(){
this.aaa(obj); /*这里要如何处理才能调用 aa 方法?? 目前这样写是错误的。*/
}
);
}
} 展开
2个回答
展开全部
定段枣义一个胡丛Test的成员握做拆变量 var _this = this;
代码如下:
function Test(){
Test.prototype.aa = function(obj){alert(123);};
var _this = this;
Test.prototype.bbb = function(obj){
alert("bbb");
bbbb();
function bbbb(){
alert("bbbb");
_this.aa();
}
}
}
代码如下:
function Test(){
Test.prototype.aa = function(obj){alert(123);};
var _this = this;
Test.prototype.bbb = function(obj){
alert("bbb");
bbbb();
function bbbb(){
alert("bbbb");
_this.aa();
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
this关键字
this代表函数执行时的当前对象。
function Test(){
Test.prototype.aa = function(obj){alert(123);};
Test.prototype.bbb = function(obj){
var _this = this;
bbbb();
function bbbb(){
alert("bbbb");
_this.aa();
}
}
}
在内部函数bbbb执行的纯纤扒时候,this的指向改变了,变成window对象,所以在之做昌前用一竖喊个_this对象存起来.
this代表函数执行时的当前对象。
function Test(){
Test.prototype.aa = function(obj){alert(123);};
Test.prototype.bbb = function(obj){
var _this = this;
bbbb();
function bbbb(){
alert("bbbb");
_this.aa();
}
}
}
在内部函数bbbb执行的纯纤扒时候,this的指向改变了,变成window对象,所以在之做昌前用一竖喊个_this对象存起来.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询