4

我想做这样的事情:

function start(){
    // Change the first argument in the argument list
    arguments[0] = '<h1>' + arguments[0] + '</h1>';

    // Call log with the new arguments
    // But outputs: TypeError: Illegal invocation
    log.apply(this, arguments);
}

function log(){ 
    console.log(arguments);   
    // should output -> ['<h1>hello<h1>', 'world', '!']
}


start('hello', 'world', '!');
4

1 回答 1

5

您的代码确实有效(我刚刚在最新版本的 Firefox 中进行了测试)。

但是,我可以想象某些实现在将对象arguments作为值传递给Function.prototype.apply. 所以试试:

function start(){
    var args = Array.prototype.slice.call( arguments );
    args[0] = '<h1>' + args[0] + '</h1>';

    log.apply(this, args);
}

通过调用Array.prototype.slice-object arguments,我们创建了一个“真正的”ECMAscript Array,我们可能需要它作为第二个参数.apply()

于 2013-01-06T03:54:44.430 回答