我在离子应用程序中将iframe用于付款页面。单击iframe内的提交(Senden)按钮后:
带有浏览器的弹出窗口显示如下:
如何防止此弹出窗口出现?
我在iframe中使用targer="_self"
。但它不起作用。
我已经从allow-popups allow-top-navigation
的sandbox
属性中删除了iframe
。
修复前的iframe:
<iframe #iframe id="iframe"
frameborder="0"
[src]="url"
style="width:100%; border:none;"
sandbox="allow-popups allow-top-navigation allow-presentation allow-scripts allow-pointer-lock allow-same-origin allow-forms">
</iframe>
现在的iframe:
<iframe #iframe id="iframe"
frameborder="0"
[src]="url"
style="width:100%; border:none;"
sandbox="allow-presentation allow-scripts allow-pointer-lock allow-same-origin allow-forms">
</iframe>