尝试在我的网站中打开其他网站内容

时间:2014-11-24 05:40:55

标签: html asp.net asp.net-mvc html5

我正在尝试在我的网站上打开其他网站内容

<iframe src="http://blogs.msdn.com/crm/default.aspx">

我尝试过使用Iframe。它运作良好,但不会打开所有网址。

这是什么解决方法? 任何帮助或建议表示赞赏。

1 个答案:

答案 0 :(得分:-1)

您可以使用JQuery来执行此操作:

<script>$("#testLoad").load("http://www.example.com");</script>
<div id="testLoad"></div>

您可以阅读更多内容: Embed an External Page Without an Iframe?