9
var shell = function (method) {
        window[method].apply(null, Array.prototype.slice.call(arguments, 1));
    };

shell('alert', 'monkey!');
4

1 回答 1

10

alert.apply是问题所在。警报不是语言的一部分,所以它甚至可能不是一个功能。它是依赖于实现的

于 2010-07-06T12:46:00.640 回答