我在Angularjs项目上工作。我在项目中使用iframe
来显示一些页面。
这里是iframe
<iframe frameborder="0" ng-`src="../playground/#/sitesDamages" ></iframe>:`
这是我要在iframe中显示的模板中显示的div:
<div id="frameArea">
//some content
</div>
我希望从Id="frameArea"
的特定div显示页面的问题。
答案 0 :(得分:-1)
作为替代方案,您可以使用简单的方法并使用jQuery“load”函数加载整个页面并选择您想要的部分:
$('#target-div').load('http://www.mywebsite.com/portfolio.php #portfolio-sports');