在HTML头中获取js文件无效

时间:2013-04-12 00:12:15

标签: javascript jquery html

我有一个脚本“test.js”。 test.js的唯一内容是console.log('hi from the script!')。为什么这条消息没有出现在我的js控制台中的chrome或firefox中?

network面板response显示正确的脚本。所以文件位置是正确的。

<html>
    <head>
        <script type="text/javscript" src="test.js"></script>
    </head>
    <body>
        <script type="text/javascript">
            console.log('hello?');
        </script>
    </body>
</html>

1 个答案:

答案 0 :(得分:3)

脚本类型中有拼写错误。它应该是

<script type="text/javascript" src="test.js"></script>