最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Get text from body tag of another page hosted on another domain - javascriptJquery - Stack Overflow

programmeradmin1浏览0评论

Suppose a webpage www.example/some.html hosed on server. Now I want to get the content inside body tag of that page from another domain. How can I do it? I tried to find solution, but no luck with that yet.

Here are some ways that I thought and found. First one can get content of a tag from same site.

    $.get("link.html", function(data) {
    var html = $('<div>').html(data);
    var content = html.find("div#some_div_id").html();
    //do something
    $("#Container").html(content);
});

use .get() to get html of a div in another page

I tried, but doesn't work for me. I think it's because of my cross domain request.

Second idea is using iframe. Wanna load the page into iframe and extract body tag. But can't find any solution regarding how can I detect the event that iframe pleted loading the page? Or how can I get the content from an iframe loaded page?

Can anyone please tell me how can I get those content from the body tag in a simple way?? Is there any solution just like my first example? Please help...

Suppose a webpage www.example./some.html hosed on server. Now I want to get the content inside body tag of that page from another domain. How can I do it? I tried to find solution, but no luck with that yet.

Here are some ways that I thought and found. First one can get content of a tag from same site.

    $.get("link.html", function(data) {
    var html = $('<div>').html(data);
    var content = html.find("div#some_div_id").html();
    //do something
    $("#Container").html(content);
});

use .get() to get html of a div in another page

I tried, but doesn't work for me. I think it's because of my cross domain request.

Second idea is using iframe. Wanna load the page into iframe and extract body tag. But can't find any solution regarding how can I detect the event that iframe pleted loading the page? Or how can I get the content from an iframe loaded page?

Can anyone please tell me how can I get those content from the body tag in a simple way?? Is there any solution just like my first example? Please help...

Share Improve this question edited May 23, 2017 at 12:19 CommunityBot 11 silver badge asked Dec 7, 2013 at 6:47 AtanuCSEAtanuCSE 8,95016 gold badges79 silver badges115 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 2

This is not possible without a server-side proxy to request the other site's content; Javascript is not capable of making cross domain requests due to the same origin policy. You can't do this with an iframe or AJAX, server-side proxy only.

This works.

var bodycontent;
$("<div>").load("link.html body", function (data) {
  bodycontent = data;
});

If I was you, though, I would do it using something server-side. This is because many websites use Access-Control-Allow-Origin to block the files, and make you unable to access it. This is also a form of impersonation and hacking, so use it in moderation.

try this

$.ajax({
       url: "your_url",
       data: dataToSubmit,
       async: false,
       success: function(response) {
            $('.your_div').html(response);
       }
});

you may also use load

$('body').load("your_url");
$.get("URL", function(data) {
  data = data.replace(/\n|\r|\t/gmi,'');
  /<body>(.*)<\/body>/i.test(data);
  data = RegExp.$1;
});

If you want parse HTML,using regular expressions is better

发布评论

评论列表(0)

  1. 暂无评论