欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js下parent.window与top.window的用法

程序员文章站 2022-06-11 11:07:58
js下parent.window与top.window的用法 首先来说说 parent.window与top.window的用法 "window.location.href&qu...

js下parent.window与top.window的用法

首先来说说 parent.window与top.window的用法  
"window.location.href"、"location.href"是本页面跳转  
"parent.location.href"是上一层页面跳转  
"top.location.href"是最外层的页面跳转  
举例说明:  
如果a,b,c,d都是jsp,d是c的iframe,c是b的iframe,b是a的iframe,如果d中js这样写  
"window.location.href"、"location.href":d页面跳转  
"parent.location.href":c页面跳转  
"top.location.href":a页面跳转