无法在javascript中输出console.log

时间:2015-07-20 15:59:37

标签: javascript html

当我使用firefox浏览器打开以下文件时,屏幕上没有输出任何内容。我做错了什么?

<!DOCTYPE HTML>
<html>
<head>
    <meta charset="UTF-8">
    <script>
        var mystring="hello world";
        console.log(mystring);
    </script>
</head>
<body>
</body>
</html>

1 个答案:

答案 0 :(得分:3)

console.log()未写在网页上(因为您需要document.write("your text here")

要查看该文本,请确保在firefox中启用并打开“开发人员工具”,然后转到“控制台”选项卡。刷新页面,你会看到那里的文字!

有关详情,请参阅https://developer.mozilla.org/en-US/docs/Web/API/Console/log

这也可以帮助您:https://developer.mozilla.org/en-US/docs/Tools/Web_Console