防止别的网站把自己的站纳入框架代码
作者:admin | 时间:2015-9-1 23:33:27 | 分类:技术文章 隐藏侧边栏展开侧边栏
如果你也不爽你的网站被人纳入框架,请加如下代码在你的<head></head>头部,或你调用的js里面。
<script>
(function(window) {
if (window.location !== window.top.location) {
window.top.location = window.location;
}
})(this);
</script>
<script>
(function(window) {
if (window.location !== window.top.location) {
window.top.location = window.location;
}
})(this);
</script>