如果我打开chrome(重新安装它)并按F12以获取开发工具,则返回以下代码并显示错误:
console.debug('test');
错误为Uncaught ReferenceError: console is not defined(…)
无论我在哪个网站,都会发生这种情况。
console
不应该是通用对象。
我有什么想法可以让控制台恢复?
更新:我尝试卸载并重新安装chrome。那没用。我安装了chrome的canary版本(它创建了一个单独的配置文件),并且该版本确实有效。
我在网络应用中解决问题时得到了一些建议。该建议告诉我运行delete window.console
\ delete console
。
我担心这让我搞砸了。