如何在页面加载前删除iframe?
在我的网站上,我让用户在iframe中填写调查单调查。调查完成后,surveymonkey会重定向到我网站域中的某个页面。这个新页面仍然被困在iframe中;我想在加载这个新页面之前删除iframe。我尝试了以下代码,但这删除了iframe和我要加载的这个新页面的内容,产生一个空白屏幕:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$('iframe', parent.document).remove();
});
</script>
</head>
</html>
<?php
//the content for the page I want loaded
?>
有什么建议吗?
答案 0 :(得分:0)
清理未回答的问题
你想要一个重磅炸弹
if(top!= self)top.location.replace(location);