1. 登录
if (window.top !== window.self) {
window.top.location = window.location;
}
判断当前窗口是否是顶层窗口。 如果不是,则将顶层窗口的地址改为当前窗口地址。
window.top.location 表示顶层网页的地址的对象。 window.top.location.href表示顶层页面的url
详细window.top window.self 参考
http://blog.csdn.net/zdwzzu2006/article/details/6047632
Js中的window.parent ,window.top,window.self 详解