当前位置:  开发笔记 > 编程语言 > 正文

Javascript:如何从类的一个函数中的函数访问类属性

如何解决《Javascript:如何从类的一个函数中的函数访问类属性》经验,为你挑选了1个好方法。

在我的某个类的某个函数中,我需要setInterval用来分解代码的执行.但是,在setInterval函数中,"this"不再引用类"myObject".如何从setInterval函数中访问变量"name" ?

function myObject() {
    this.name = "the name";
}

myObject.prototype.getName = function() {
    return this.name;
}

myObject.prototype.test = function() {
    // this works
    alert(this.name);

    var intervalId = setInterval(function() {
        // this does not work
        alert(this.name);

        clearInterval(intervalId);
    },0);
}

jacobangel.. 12

myObject.prototype.test = function() {
    // this works
    alert(this.name);
    var oThis = this;
    var intervalId = setInterval(function() {
        // this does not work
        alert(oThis.name);

        clearInterval(intervalId);
    },0);
}

这应该工作.匿名函数的"this"与myObject的"this"不同"this".



1> jacobangel..:
myObject.prototype.test = function() {
    // this works
    alert(this.name);
    var oThis = this;
    var intervalId = setInterval(function() {
        // this does not work
        alert(oThis.name);

        clearInterval(intervalId);
    },0);
}

这应该工作.匿名函数的"this"与myObject的"this"不同"this".

推荐阅读
手机用户2402851335
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有