码迷,mamicode.com
首页 > 其他好文 > 详细

iframe中的各种跳转方法

时间:2014-05-01 19:26:02      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   tar   color   get   strong   art   http   rgb   window   

iframe中的各种跳转方法(转)

 

一、背景
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页面跳转


三、链接或者form
D页面中有form
< form>: form提交后D页面跳转
<form target="_blank">: form提交后弹出新页面
<form target="_parent">: form提交后C页面跳转
<form target="_top"> : form提交后A页面跳转


四、刷新
parent.location.reload():C页面刷新
window.opener.document.location.reload():C页面刷新(使用子窗口的opener对象来获得父窗口对象)
top.location.reload():A页面刷新

 

原帖地址:http://blog.csdn.net/yuling59520/article/details/5630766

iframe中的各种跳转方法,码迷,mamicode.com

iframe中的各种跳转方法

标签:style   blog   class   tar   color   get   strong   art   http   rgb   window   

原文地址:http://www.cnblogs.com/lxf1117/p/3702839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!