0

我正在尝试将网页加载到 div 中……但它没有加载到 div 中……而是作为整个网页加载……为什么?

<li><a href="#" onClick="AboutUs();">About&nbsp;Us</a></li>
<div class="bdy"></div>

javascript代码:

function AboutUs () {
    // body...
//$('.bdy').load('http://www.jhsoftech.com' );
$('.bdy').html('<object style="width:100%;height:435px;" data="http://www.erail.in">');
}
4

2 回答 2

1

我在 iframe 沙箱中打开了您的网站。

JSFIDDLE 示例

$('.bdy').html('<iframe sandbox="allow-scripts" style="width:100%;height:435px;" src="http://www.erail.in"><iframe>');
})

您网站的问题,设置另一个位置/重定向页面是您网站上的这部分代码:

if(top!=self)top.location.href="http://erail.in";

删除它,您就可以在没有沙箱阻止的情况下实现它allow-top-navigation

于 2013-06-21T06:56:28.197 回答
0

只需更改为

<div class="bdy"></div>

并使用 jquery 看看这个http://jsfiddle.net/markipe/TEHsJ/

于 2013-06-21T06:45:14.657 回答