现在的位置: 首页 > web前端 > 正文

window location href用法

2020年07月16日 web前端 ⁄ 共 1248字 ⁄ 字号 评论关闭

  window.location.href=window.location.href;和window.location.Reload()和都是刷新当前页面。区别在于是否有提交数据。当有提交数据时,window.location.Reload()会提示是否提交,window.location.href=window.location.href;则是向指定的url提交数据。


  window.location.href的用法


  javascript中的location.href有很多种用法,主要如下。


  self.location.href="/url"当前页面打开URL页面


  location.href="/url"当前页面打开URL页面


  windows.location.href="/url"当前页面打开URL页面,前面三个用法相同。


  this.location.href="/url"当前页面打开URL页面


  parent.location.href="/url"在父页面打开新页面


  top.location.href="/url"在顶层页面打开新页面


  如果页面中自定义了frame,那么可将parentselftop换为自定义frame的名称,效果是在frame窗口打开url地址


  window.location.href代码


  Response.Write("<script>alert('恭喜您,注册成功!');</script>");


  Response.Redirect("main.html");


  这时候我们的提示内容没有出来就跳转了,和Response.Redirect("main.html");没有任何区别。


  这时我们采用下面代码试验一下:


  ASP.NET框架页跳转的另一实现


  复制代码代码如下:


  Response.Write("<scriptlanguage=javascript>alert('恭喜您,注册成功!')</script>");


  Response.Write("<scriptlanguage=javascript>window.location.href='main.html'</script>");


  这个即实现了我们的要求,在提示后,跳转页面。


  最重要的是window.location.href语句可以实现一个框架的页面在执行服务器端代码后刷新另一个框架的页面(Response.Redirect无法达到,至少我没有发现):


  如:index.htm页面中有二个框架,分别为frameLeft和frameRight,在frameRight页面中执行服务器端代码后刷新frameLeft中的页面。


  先前最常见的是注册之后,自动刷新登陆框,让登陆框换成已登陆页面,只要在注册成功的代码之后加上一段,即可以实现刷新另个框架的页面。


  总之,windowlocationhref给大家简单的介绍了一些,希望大家多看看。


  

抱歉!评论已关闭.