我使用了iFrame来显示网页的内容,它在Mac chrome和safari和android chrome中都有效,但在iOS safari中却没有。
如何使其正常工作? iframe放置在Cordova(ionic3)项目中。这是我的代码
home.ts
webURL() {
return this.sanitizer.bypassSecurityTrustResourceUrl(this.iFrameWebUrl);
}
home.html
<iframe [src]="webURL()">
<p>Your browser does not support iframes.</p>
</iframe>