Prevent browser selector in an Ionic App iframe - 防止打开外部浏览器
Prevent browser selector in an Ionic App iframe - Prevent open external browser
我在 ionic 应用程序中使用 iframe 作为支付页面。单击 iframe 中的提交 (Senden) 按钮后:
带有浏览器的弹出窗口如下所示:
如何防止出现此弹出窗口?
我在 iframe 中使用 targer="_self"
。但它不起作用。
我已经从 iframe
的 sandbox
属性中删除了 allow-popups allow-top-navigation
。
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>
我在 ionic 应用程序中使用 iframe 作为支付页面。单击 iframe 中的提交 (Senden) 按钮后:
带有浏览器的弹出窗口如下所示:
如何防止出现此弹出窗口?
我在 iframe 中使用 targer="_self"
。但它不起作用。
我已经从 iframe
的 sandbox
属性中删除了 allow-popups allow-top-navigation
。
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>