我正在 Firefox 中尝试一个简单的 console.log 函数:
console.log("Hello, World!");
你可以试试:http: //jsfiddle.net/EkZjK/
您也可以在独立的 HTML 文件中尝试完整的代码:
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<script type="text/javascript">
console.log("Hello World !");
</script>
</head>
</html>
我在 Chrome 中获得控制台日志。但是在 Firefox 中我看不到日志。
我尝试了Firebug控制台和Ctrl++ 。两者都不会在 Firefox 中显示日志消息。ShiftJ
PS:我重新启动了Firefox,重新启动了Windows,在另一台机器上尝试,删除了Firefox配置文件并创建了另一个,然后重新安装了Firefox。但问题仍然存在。
我该如何解决这个问题?