-4

我想做的事:

提取其他域的html。

我试过的:

$.get("http://website1.com", function(data) {
alert("Data Loaded: " + data);
});

(不工作)

(例如)我是两个网站的所有者:

website1.com
website2.com

现在我想获取 html,website1.com然后website2.com使用 jquery 或任何其他方式显示 html(website2.com 仅支持客户端语言,website1.com 支持 Php)。

我该怎么做(我是 website1 和 website2 的所有者)?

4

2 回答 2

0

Add following header to your website1 php will allow $.get() in website2 to get website1 content.

header('Access-Control-Allow-Origin: http://website2.com');
于 2013-05-08T14:46:40.617 回答
0

考虑使用 iframe 在您的页面上显示页面。

于 2013-05-08T14:25:18.073 回答