我有一个脚本“test.js”。test.js 的唯一内容是console.log('hi from the script!')
. 为什么此消息不会显示在我的 chrome 或 firefox 的 js 控制台中?
network
面板显示正确的response
脚本。所以文件位置是正确的。
<html>
<head>
<script type="text/javscript" src="test.js"></script>
</head>
<body>
<script type="text/javascript">
console.log('hello?');
</script>
</body>
</html>