-3

我有最新版本的谷歌浏览器。以下脚本在除谷歌浏览器之外的所有浏览器中运行。谁能给我任何关于如何在 chrome 中运行它的建议。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("button").click(function(){
    $("#div1").load("demo_test.txt");
  });
});
</script>
</head>
<body>

<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>

</body>
</html>
4

1 回答 1

1

Chrome 默认不允许 ajax 请求访问文件系统。您可以通过在用于打开 chrome 的快捷方式中设置一个参数来解决它,但是我建议您不要从文件系统开始测试。设置一个非常基本的网络服务器并不难。

作为参考,file://.../myfile.html将被视为从文件系统工作,而http://localhost/myfile.html从本地网络服务器工作。

于 2013-08-19T18:27:02.320 回答