首页 相关文章 用window.location.href实现刷新另个框架页面

用window.location.href实现刷新另个框架页面

  在写ASP.Net程序的时候,我们经常遇到跳转页面的问题,我们经常使用Response.Redirect ,如果客户要在跳转的时候使用提示,这个就不灵光了,如:

  Response.Write("scriptalert('恭喜您,注册成功!');/script");
  Response.Redirect("main.html");

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

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

  Response.Write("script language=javascriptalert('恭喜您,注册成功!')/script");
  Response.Write("script language=javascriptwindow.location.href='main.html'/script");

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

  最重要的是window.location.href 语句可以实现一个框架的页面在执行服务...[ 查看全文 ]

2016-02-19 标签:

用window.location.href实现刷新另个框架页面的相关文章

手机页面
收藏网站 回到头部