从cdn导入jquery后,javascript内联脚本无效

时间:2010-03-23 11:04:20

标签: javascript

我有以下代码:

<code><html>
<body><br>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js" />

<script type="text/javascript">

alert("debug");

</script>

</body>

</html>

我不知道为什么没有加载第二个脚本。我也试过了:

<html>
<body><br>
<script type="text/javascript" src="jquery.js" />

<script type="text/javascript">

  alert("debug");

</script>

</body>

 </html>

2 个答案:

答案 0 :(得分:3)

您不应在HTML文档中使用自动关闭<script>标记,它们会在IE中中断。尝试

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js">
</script>

答案 1 :(得分:3)

尝试

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

而不是

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

查看SO上的相关帖子

<强> Why don’t self-closing script tags work?