js带上框架和防止被iframe的代码

1、永远都会带着框架
<script language="JavaScript"><!--
if (window == top)top.location.href = "frames.htm"; //frames.htm为框架网页 http://www.cnblogs.com/sosoft/
// --></script>

2、防止被人frame
<SCRIPT LANGUAGE=JAVASCRIPT><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>

原文地址:https://www.cnblogs.com/sosoft/p/3463804.html