在 PC 端你可以这样设置 iframe, 来防止父级页面被重定向, 产生重定向结果的链接会以 _blank 的形式打开
<iframe src="page-b.html" sandbox="allow-forms allow-scripts allow-same-origin allow-popups">
</iframe>
在移动端你需要这样设置 iframe, 让产生重定向结果的链接失效, 来达到防止父级页面被重定向
<iframe src="page-b.html" sandbox="allow-forms allow-scripts allow-same-origin"></iframe>
网友评论