从其他URL加载HTML内容

时间:2015-10-23 14:35:14

标签: javascript jquery html cors

以下是: 网站A,网站B,Snippet.js

我无法访问网站A我们唯一获得的是一个加载的Javascript代码段,位于网站B上。

我可以完全访问网站B和Snippet.js

网站A HTML:

<div id="container"></div> <script src="WebsiteB/snippet.js"/>

网站B HTML包含一个index.html,其中包含Text。

snippet.js:

$('#container').load('WebsiteB/index.html');

我希望snippet.js将网站B中的内容加载到网站A上的div容器中,但是我收到了CORS错误。

还有其他解决办法吗?

1 个答案:

答案 0 :(得分:0)

你可以试试PHP包括:

<?php
include("http://www.google.de");
?>

或PHP file_get_contents:

<?php
print file_get_contents("http://www.google.com");
?>