热搜词
发表于 2014-3-21 17:32:02 | 显示全部楼层 |阅读模式
关于js中"window.location.href"、"location.href"、"parent.location.href"、"top.location.href"的用法
"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页面跳转

如果D页面中有form的话,
<form>: form提交后D页面跳转
<form target="_blank">: form提交后弹出新页面
<form target="_parent">: form提交后C页面跳转

子iframe操作子iframe:
self.parent.window.frames["middle"].location.href="content_first.html";

index.htm 里操作其它 frame 可以使用
document.frames[index]来操作对应的frame
比如访问某个iframe上的id为xx的htmlelement时:
document.frames[0].document.getElementById("xx");
也可以直接用
document.getElementById(某个iframe的id).document.getElementById("xx");

上面是父访子.
子访父:
document.parent
子访子
document.parent.document.frames[x].document.getElementById("xx")



全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2024-11-1 08:18 , Processed in 0.162973 second(s), 22 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2024 Discuz! Team