0

我只是不明白这一点。我现在在我的电脑上,使用崇高的文本和谷歌浏览器,我的文档不会加载 jQuery,它会等待一段时间然后失败。现在这适用于我的 Mac,使用任何类型的编辑器,但似乎每当我在我的 PC 上使用 sublime 时都会发生这种情况......

编辑:将 http:// 添加到脚本 src 将允许 jQuery 加载,但会引发 304。

<!DOCTYPE html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
$(document).ready(function(){
    $("button").click(function(){
       $("p").hide();
     });
 });
</script>
</head>

<body>
  <h2>Blah</h2>
  <button>Blah</button>
</body>
</html>

我会让 jQuery 失败 22.07s

4

2 回答 2

1

当您执行 //ajax... 时,它会动态附加 file:// 协议。由于我们是从本地文件系统执行此操作,因此我们需要更具体地使用 http://

我还修改了代码以纠正某些错误,例如缺少脚本标记。添加了 ap 标签,以便我们可以看到示例工作等。看看。

<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
       $("p").hide();
     });
 });
</script>
</head>

<body>
  <h2>Blah</h2>
  <button>Blah</button>
  <p>  This will go away </p>
</body>
</html>
于 2013-05-15T07:26:02.587 回答
0

尝试 :

http:在 src 中追加

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>

//src

<script src="ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
于 2013-05-15T07:15:50.443 回答