防止网页被嵌入框架的代码
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;
}
以上是关于防止网页被嵌入框架的代码的主要内容,如果未能解决你的问题,请参考以下文章