我在离子应用程序中使用 iframe 作为支付页面。单击 iframe 内的提交 (Senden) 按钮后:带有浏览器的弹出窗口如下所示:如何防止出现此弹出窗口?targer="_self"我在iframe中使用。但它不起作用。
1 回答
慕容708150
TA贡献1831条经验 获得超4个赞
我已经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>
- 1 回答
- 0 关注
- 63 浏览
添加回答
举报
0/150
提交
取消