小编典典

jQuery load()仅在Firefox中工作?

javascript

我试图进入jquery / ajax,我什至不敢相信我无法通过这第一个测试。我正在跟踪我在Jquery
API站点上
找到的示例,然后将其跟踪到T。

我在桌面上创建了一个本地文件夹,并添加了2个文件。

index.html

list1.html。


Index.html:

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>

<body>

<div id="stage">
</div>

<script>
$( "#stage" ).load( "list1.html" );
</script>

</body>

</html>

list1.html

<div id="list">
<li>Test</li>
<li>Foo</li>
<li>Bar</li>
</div>

我试图用15分钟的时间在chrome中运行index.html,但没有任何显示(例如jquery无法正确加载)。出于好奇,我用firefox打开了它,并按预期显示了它。

  • Test
  • Foo
  • Bar

那么这是浏览器问题吗?为什么Chrome和IE不会显示此加载列表,而firefox会显示呢?我无法弄清楚尝试学习时是因为我的代码还是环境令人发指。


阅读 261

收藏
2020-04-25

共1个答案

小编典典

尝试启动带有--allow-file-access-from-files标志的chrome / chrome

2020-04-25