关于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")
|
|