jQuery console.log() 在 Firefox 中不起作用

jQuery console.log() doesn't work in Firefox

我在 jQuery 3.1.0 中工作,我想使用 console.log() 函数来调试我的代码(我在 Firefox 47.0 中使用默认的开发人员控制台)。

我尝试了以下代码:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>
    $(document).ready(function(){
        console.log($("body").height());
        alert($("body").height());
    });
</script>

<script> 元素在 <body> 元素中(最后,就在 </body> 之前)

尝试 运行 页面时,我收到带有正确数字的警报,但控制台是空的。当我尝试在命令行中输入 console.log('foo'); 时,它会响应 undefined:

screenshot here

(对不起,我的英语很糟糕。)

编辑: 我现在尝试使用以下代码,但它似乎仍然不起作用:

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <script>
            console.log('hi');
        </script>
    </body>
</html>

您必须在开发者控制台的 CSSJS、... 顶部选项卡中启用 Zurnal 选项(灰色圆圈)。

否则,您将得不到日志输出。

在西班牙语中是 Registro。在英语中,它将类似于 Registry/Logs.