如何在具有特定ID的div中显示I帧中的页面?

时间:2016-07-28 17:18:09

标签: javascript angularjs

我在Angularjs项目上工作。我在项目中使用iframe来显示一些页面。

这里是iframe

<iframe frameborder="0" ng-`src="../playground/#/sitesDamages" ></iframe>:`

这是我要在iframe中显示的模板中显示的div:

<div id="frameArea">
  //some content
</div>

我希望从Id="frameArea"的特定div显示页面的问题。

1 个答案:

答案 0 :(得分:-1)

作为替代方案,您可以使用简单的方法并使用jQuery“load”函数加载整个页面并选择您想要的部分:

$('#target-div').load('http://www.mywebsite.com/portfolio.php #portfolio-sports');