讨厌打开一个新问题来扩展上一个问题:

function ctest() {
    this.iteration = 0;
    this.func1 = function() {
        var result = func2.call(this, "haha");
        alert(this.iteration + ":" + result);
    }
    var func2 = function(sWord) {
        this.iteration++;
        sWord = sWord + "lol";
        if ( this.iteration < 5 ) {
            func2.call(this, sWord);
        } else {
            return sWord;
        }
    }
}

这返回迭代= 5,但结果不确定?那怎么可能呢?我明确地返回sWord。它应该已经返回“haha​​lollollollollol”,并且仅用于仔细检查,如果我刚好在返回sWord之前发出警告(sWord),它将正确显示它。

最佳答案

您必须一路返回堆栈:

func2.call(this, sWord);

应该:
return func2.call(this, sWord);

10-08 11:39