为什么我无法使用 jQuery .load 方法加载 Flickr.com?

发布于 2024-10-05 13:25:32 字数 379 浏览 4 评论 0原文

我的 HTML 代码是:

<!DOCTYPE html>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<div id="abc"></div>
<script>
    $('#abc').load('http://www.flickr.com/');
</script>

但是在 中,什么也没有。

错误在哪里?

谢谢你!

My HTML code is:

<!DOCTYPE html>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-1.4.4.min.js"></script>
<div id="abc"></div>
<script>
    $('#abc').load('http://www.flickr.com/');
</script>

But in , there's nothing.

Where is error?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

围归者 2024-10-12 13:25:32

.load() 函数使用 AJAX。 AJAX 不能跨域工作,这就是它不起作用的原因。

但是,您可以使用 JSONP 检索 Flickr 数据: http://api.jquery.com/jQuery.getJSON/

The .load() function uses AJAX. AJAX doesn't work cross-domain, this is why it isn't working.

You can however use JSONP to retrieve Flickr data: http://api.jquery.com/jQuery.getJSON/

掀纱窥君容 2024-10-12 13:25:32

您无法通过 jQuery 加载外部站点(不同的域),除非您使用 JSON 函数。

You cannot load external sites (different domain) via jQuery, unless your using the JSON functions.

美男兮 2024-10-12 13:25:32

如前所述,您无法对自己域之外的页面使用 load 函数。但你可以使用 iframe 代替:

<iframe id="abc"></iframe>
<script language="javascript" type="text/javascript">
  $('#abc').attr('src', 'http://www.flickr.com');
</script>

As mentioned before, you can't use the load function for pages outside your own domain. But you could use an iframe instead:

<iframe id="abc"></iframe>
<script language="javascript" type="text/javascript">
  $('#abc').attr('src', 'http://www.flickr.com');
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文