top.location.href //是最外层的页面跳转 window.location.href 或 location.href //是本页面跳转 parent.location.href //是上一层页面跳转.
location是window对象的属性,而所有的网页下的对象都是属于window作用域链中(这是顶级作用域),所以使用时是可以省略window。
而top是指向顶级窗口对象,parent是指向父级窗口对象。
top.location.href //是最外层的页面跳转 window.location.href 或 location.href //是本页面跳转 parent.location.href //是上一层页面跳转.
location是window对象的属性,而所有的网页下的对象都是属于window作用域链中(这是顶级作用域),所以使用时是可以省略window。
而top是指向顶级窗口对象,parent是指向父级窗口对象。