JavaScript中如何判断页面是否是在iframe中打开?

已邀请:

zkbhj - 凯冰科技站长

赞同来自:

<!-- 禁止在非框架内打开页面 -->
<script>
if(window.self == window.top){
alert("This page is forbidden to be opened");
window.close();
}
</script>

zkbhj - 凯冰科技站长

赞同来自:

//判断是否在iframe中
if(self!=top){
parent.window.location.replace(window.location.href);
}
强制在父级页面重新打开!

要回复问题请先登录注册