本文章来讲一下关于js 中的window.location.href,location.href,parent.location.href,top.location.href几个命令的方法,
window.location.href"、"location.href"是本页面跳转
仔细对照一下:
应该为:
window.location.href="b.asp?dr="+a+"&drr="+c;
"parent.location.href"是上一层页面跳转
"top.location.href"是最外层的页面跳转
parent 和 location 都是对象不是函数
parent 表示 父容器对象
location 表示 当前url
还有就是如果页面当中有自定义的frame的话,
也可以将parent self top换为自定义frame的名称
效果就是在自定义frame窗口打开url地址
if(window != top){
top.location.href="/login.aspx";
}
举例说明:
如果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的话,