防止网页被嵌套
Posted 落灯花
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了防止网页被嵌套相关的知识,希望对你有一定的参考价值。
try{
top.location.hostname;
if (top.location.hostname != window.location.hostname) {
top.location.href =window.location.href;
}
}
catch(e){
top.location.href = window.location.href;
}
以上是关于防止网页被嵌套的主要内容,如果未能解决你的问题,请参考以下文章
关于HTTP头部信息X-Frame-Options的问题-防止网站被人嵌套