本文介绍了TypeError:在console.log.apply上的非法调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果您在Chrome控制台中执行此操作:

If you run this in the chrome console:

console.log.apply(null, [array])

Chrome会返回一个错误:

Chrome gives you back an error:

// TypeError: Illegal Invocation

为什么? (通过OSX在Chrome 15上测试)

Why? (Tested on Chrome 15 via OSX)

推荐答案

从控制台到任何其他对象:

It may not work in cases when execution context changed from console to any other object:

console.info("stuff")
stuff
undefined
console.info.call(this, "stuff")
TypeError: Illegal invocation
console.info.call(console, "stuff")
stuff
undefined

这是预期的行为。

这篇关于TypeError:在console.log.apply上的非法调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 11:51
查看更多