我有这个页面:
<html>
<head>
<title>my title</title>
</head>
<body>
<iframe src="http://www.shereno.com"></iframe>
</body>
</html>
但在1秒后重定向到http://www.shereno.com
你可以在iframe whitout重定向中使用这个网址吗?
答案 0 :(得分:0)
在HTML5中使用sandbox
属性禁用allow-top-navigation
,允许文档通过导航顶级窗口突破框架。我们定义sandbox
属性并将allow-top-navigation
退出!
<html>
<head>
<title>my title</title>
</head>
<body>
<iframe sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="http://www.shereno.com"></iframe>
</body>
</html>