在应用有frameset或者iframe的页面时,parent是父窗口,top是最顶级父窗口,self是当前窗口, opener是用open方法打开当前窗口的那个窗口。
判断当前窗口是否在一个框架中:
<script type="text/javascript">var b = window.top!=window.self;document.write( "当前窗口是否在一个框架中:"+b );</script>
本文共 278 字,大约阅读时间需要 1 分钟。
在应用有frameset或者iframe的页面时,parent是父窗口,top是最顶级父窗口,self是当前窗口, opener是用open方法打开当前窗口的那个窗口。
判断当前窗口是否在一个框架中:
<script type="text/javascript">var b = window.top!=window.self;document.write( "当前窗口是否在一个框架中:"+b );</script>
转载于:https://www.cnblogs.com/cy056/archive/2013/02/07/2908720.html