0

我正在玩弄 jQuery 的美妙世界(因为我最终想要制作好的 web 应用程序/游戏)并且我进入了 .load 和 .get 主题。我看到(这里和其他一些地方)如果需要,您可以将页面的 html 插入到 div 中。我在 jsFiddle 上尝试过这个,但结果是他们应该的。我究竟做错了什么?

<button id="btn1" type="button">Click!</button>
<div id="box1" style="width: 100px; height:100px"></div>
<div id="box2" style="width: 100px; height:100px"></div>

$('#btn1').click(function () {
    $('#box1').load('http://stackoverflow.com');
    $('#box2').load('http://stackoverflow.com');
});

我在一堆不同的浏览器中尝试了相同的代码,但仍然没有运气。我究竟做错了什么?

4

1 回答 1

2

由于同源政策,您无法执行此操作

您无法从调用脚本之外的域加载数据

于 2013-03-28T21:33:58.540 回答