如何将外部网页的某个div加载到位于不同域的另一个网页上

发布于 2024-12-20 02:21:00 字数 218 浏览 0 评论 0原文

如何将网页的某个 div 加载到位于不同域的另一个网页上。

我已经尝试过这个:

<div id="m"></div>
<script>$('#m').load('http://something.com #divname');</script>

但是当要加载的页面位于另一个域上时它不起作用

How can you load a certain div of a webpage on another webpage that resides on a different domain.

I have tried this:

<div id="m"></div>
<script>$('#m').load('http://something.com #divname');</script>

But it doesnt work when the page to load is on another domain

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

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

发布评论

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

评论(2

不必在意 2024-12-27 02:21:00

这个 jQuery 模组 可以让您做到这一点。 看看!它使用 YQL 来允许跨域请求。

收到请求后,它会显示为 JSON,您可以通过 ajax 解析它。这是我使用它的一种方式:

$.ajax({
    url: 'http://something.com',
    type: 'GET',
    success: function(res) {
        var loadIt = $j(res.responseText).find('#divname').html();
        $('#m').html(loadIt);
    }
});

但我认为您也可以简单地使用 .load 来完成此操作,如该链接所示。

This mod for jQuery allows you to do just that. Check it out! It uses YQL to allow cross domain requests.

Once you get the request it appears as JSON which you can parse out through ajax. This is one way I have used it :

$.ajax({
    url: 'http://something.com',
    type: 'GET',
    success: function(res) {
        var loadIt = $j(res.responseText).find('#divname').html();
        $('#m').html(loadIt);
    }
});

But I think you can also simply do it using the .load as is shown on that link.

人海汹涌 2024-12-27 02:21:00

您需要在服务器端使用一种称为网络抓取的技术。

几乎所有服务器端编程语言都有一个库来执行此操作。如果您熟悉 JavaScript,则可以使用 Node.js。一旦您获得了所需的 div 并可用,您就可以使用 Ajax 将其提供给客户端,这也可以使用 Node.js 轻松完成。

有关更多信息,请参阅这篇文章

You need to use a technique called web scraping on your server side.

Almost all server side programming languages have a library to do this. If you are familiar with JavaScript you can use node.js. Once you have the div you require scraped and available, you can serve it to the client using Ajax which can also be done easily with node.js.

For more, look at this article.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文