js 中的location.href,parent.location.href,top

本文章来讲一下关于js 中的window.location.href,location.href,parent.location.href,top.location.href几个命令的方法,

window.location.href"、"location.href"是本页面跳转

<script language="网页特效">
window.document.location.href="./admin_index.asp教程?username="&request("patientname")&"&patientnumber="&request("patientnumber");</script>
仔细对照一下:
应该为:
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";
}

<script type="text/javascript">
if(window.top.location.href!=location.href)
{
window.top.location.href=location.href;
}
</script>

举例说明:

如果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页面跳转

<form target="_top"> : form提交后a页面跳转

关于页面刷新,d 页面中这样写:

"parent.location.reload();": c页面刷新 (当然,也可以使用子窗口的 opener 对象来获得父窗口的对象:window.opener.document.location.reload(); )

"top.location.reload();": a页面刷新

时间: 2024-10-25 14:57:29

js 中的location.href,parent.location.href,top的相关文章

关于js中window.location.href,location.href,parent.location.href,top.location.href的用法与区别_javascript技巧

"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"."locatio

window.parent.location = window.parent.location.href;

问题描述 Response.Write("<script>window.parent.location=window.parent.location.href;</script>");使用另一种格式,不用JS来重新书写此代码.保存后返回父页面. 解决方案 解决方案二: 解决方案三:不用JS,因为在FF会出现把CSS样式表卡没有的状况.解决方案四:考试?问你的培训班里的小组长.

JS 中document.URL 和 windows.location.href 的区别_javascript技巧

document 表示的是一个文档对象,windows 表示一个窗口对象. 一个窗口下面可以有很多的document对象.每个document 都有 一个URL. 但是,这不是所有的区别.当你ctrl + F5 一个链接 http://www.jb51.net/#server 打印 alert(document.URL ); 和 alert(windows.location.href); 发现,这两个的值不一样, document.URL : http://www.jb51.net/ windo

js location.replace与location.reload的区别_javascript技巧

location.reload相当于我们按F5,页面在服务器端已经存在,isPostBack页面不会从服务器端重新生成,然后返回客户端 会在浏览器的历史浏览记录中增加一条记录 location.replace 页面会从服务器端重新创建,not ispostback,这个是用新的url代替原Url,把Histrory里面url也替换成了新的Url window.location.href,本层页面跳转 首先,定义一个iframe 复制代码 代码如下: <iframe method="post

js中top.location.href、parent.location.href用法

window.location.href.location.href是本页面跳转 parent.location.href是上一层页面跳转 top.location.href是最外层的页面跳转 举例说明: window.location.href.location.href: 例:  代码如下 复制代码 window.location.href= 'wapsend1.asp?zimu=A&rev= '   +   form1.rev.value ; parent.location.href:C页

快速解决js中window.location.href不工作的问题_javascript技巧

E6中在html中<a>标识中通过JS添加click事件调用一个JS函数,例如: < script type = "text/javascript" > function jump () { window . location . href = 'http://www.jb51.net' ; } function enjoy () { return false ; } < /script> html代码: <a href= "java

window.location.href = window.location.href 跳转无反应 a超链接onclick事件写法_javascript技巧

错误写法 , 主要是在 href="#"这里 复制代码 代码如下: 错误写法 , 主要是在 href="#"这里 脚本如下 复制代码 代码如下: if (data == "发送成功") {                    alert(data);                    window.location.href = window.location.href;                } 正确的写法  href 后面跟一个

在JS中a标签加入单击事件屏蔽href跳转页面_javascript技巧

我们常用的在a标签中有点击事件: 1. a href="JavaScript:js_method();" 这是我们平台上常用的方法,但是这种方法在传递this等参数的时候很容易出问题,而且javascript:协议作为a的href属性的时候不仅会导致不必要的触发window.onbeforeunload事件,在IE里面更会使gif动画图片停止播放.W3C标准不推荐在href里面执行javascript语句 2. a href="javascript:void(0);"

js中top/parent/frame概述及案例应用_基础知识

引用方法top: 该变量永远指分割窗口最高层次的浏览器窗口.如果计划从分割窗口的最高层次开始执行命令,就可以用top变量. parent: 该变量指的是包含当前分割窗口的父窗口.如果在一个窗口内有分割窗口,而在其中一个分割窗口中又包含着分割窗口,则第2层的分割窗口可以用parent变量引用包含它的父分割窗口. 附:Window对象.Parent对象.Frame对象.Document对象和Form对象的阶层关系 Windwo对象→Parent对象→Frame对象→Document对象→Form对象