Jquery将无法加载,因为无法找到它

时间:2014-03-26 20:10:11

标签: javascript jquery html

我的html页面不起作用,因为我的脚本没有加载。我使用的脚本如下:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>

这是错误:

Failed to load resource: net::ERR_FILE_NOT_FOUND
file://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js

你能看到问题吗?我刚刚从google托管库复制了脚本src。

2 个答案:

答案 0 :(得分:30)

我认为您正在使用本地文件系统上的HTML文件对此进行测试。没有指定协议的//因此而假定为file://

答案 1 :(得分:3)

您需要在网址前加上http://。试试吧: http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js