标签:
top 属性返回最顶层的先辈窗口(如果有多层框架的话)。语法如下:
window.top
下面的例子检测当前窗口是否在一个框架中,如果是则跳出框架:
<html> <head> <script type="text/javascript"> function breakout(){ if (window.top!=window.self){ window.top.location="http://www.5idev.com" } } </script> </head> <body> <button onclick="breakout()">跳出框架</button> </body> </html>
http://www.5idev.com/p-javascript_window_top.shtml
标签:
原文地址:http://www.cnblogs.com/zhanglimei/p/4206607.html