#Js中的window.parent ,window.top,window.selfhtml
http://blog.csdn.net/zhaoshi1987/article/details/51363132ajax
https://xiariboke.com/design/2926.html http://guangcai.iteye.com/blog/518345框架
http://www.cnblogs.com/vickysi/archive/2016/12/21/6208528.html網站
防止網站被嵌套.net
複製代碼 window.onload = function () {code
if(window.top != window.self) { window.top.location = window.self.location; } }
複製代碼 做用:防止網頁被<iframe>或者<frameset>引用htm
原理:檢查當前網頁是否被嵌套,若是被嵌套就直接將該網頁在頂層窗口打開blog
知識點:ip
window.self get
功能:對自身窗口的引用
應用:window.self.location 返回地址
重點:window = self = window.self
window.parent
功能:對父級窗口的引用
應用:window.parent.location 返回父級窗口地址
重點:若是窗口自己是頂層窗口,window.top = window.parent = window.self
window.top
功能:對頂層窗口的引用
應用:window.top.location 返回地址
重點:若是窗口自己是頂層窗口,window.top = window.paeent = window.self
判斷窗口是否被嵌套
<script> var b = window.top!=window.self; document.write( "當前窗口是否在一個框架中:"+b ); </script>