script刷新页面,刷新代码,页面自动刷新代码.doc

上传人:hw****26 文档编号:3006363 上传时间:2019-05-16 格式:DOC 页数:6 大小:34KB
下载 相关 举报
script刷新页面,刷新代码,页面自动刷新代码.doc_第1页
第1页 / 共6页
script刷新页面,刷新代码,页面自动刷新代码.doc_第2页
第2页 / 共6页
script刷新页面,刷新代码,页面自动刷新代码.doc_第3页
第3页 / 共6页
script刷新页面,刷新代码,页面自动刷新代码.doc_第4页
第4页 / 共6页
script刷新页面,刷新代码,页面自动刷新代码.doc_第5页
第5页 / 共6页
点击查看更多>>
资源描述

1、script 刷新页面,刷新代码,页面自动刷新代码 博客分类: Script ,jQuery 页面自动刷新代码大全,基本上所有要求自动刷新页面的代码都有,大家可以自由发挥做出完美的页面。 1) 10 表示间隔 10 秒刷新一次 2) window.location.reload(true); 如果是你要刷新某一个 iframe 就把 window 给换成 frame 的名字或 ID 号 3) window.navigate(“本页面 url“); 4 function abc() window.location.href=“/blog/window.location.href“; setTim

2、eout(“abc()“,10000); 刷新本页: Response.Write(“window.location.href=window.location.href;“) 刷新父页: Response.Write(“opener.location.href=opener.location.href;“) 转到指定页: Response.Write(“window.location.href=yourpage.aspx;“) 刷新页面实现方式总结(HTML,ASP,JS) by aloxy 定时刷新: 1,setTimeout(“location.href=url“,2000) 说明:url

3、 是要刷新的页面 URL 地址 2000 是等待时间=2 秒, 2, 说明: n is the number of seconds to wait before loading the specified URL. url is an absolute URL to be loaded. n,是等待的时间,以秒为单位 url 是要刷新的页面 URL 地址 3, 说明:一般用一个 url 参数或者表单传值判断是否发生某个操作,然后利用response.redirect 刷新。 4,刷新框架页 script language=javascripttop.leftFrm.location.reloa

4、d();parent.frmTop.location.reload();弹出窗体后再刷新的问题 Response.Write(“window.showModalDialog(./OA/SPCL.aspx,window,dialogHeight: 300px; dialogWidth: 427px; dialogTop: 200px; dialogLeft: 133px)“);/open Response.Write(“document.location=document.location;“); 在子窗体页面代码 head 中加入 刷新的内容加在 if (!IsPostBack) 中 在框架页

5、中右面刷新左面 /刷新框架页左半部分 Response.Write(“); Response.Write(“parent.left.location.href=PayDetailManage_Left.aspx“); Response.Write(“); 页面定时刷新功能实现 有三种方法: 1,在 html 中设置: 之後加入下面这一行即可! 定时刷新: 10 代表刷新间隔,单位为秒 2.jsp 每一秒刷新一次 3.使用 javascript: setTimeout(“self.location.reload();“,1000); 一秒一次 页面自动跳转: window.location.hr

6、ef=“mian.aspx“; history.go(0);/window.close(); /关闭浏览器此页的窗口 先来看一个简单的例子: 下面以三个页面分别命名为 frame.html、top.html、bottom.html 为例来具体说明如何做。 frame.html 由上(top.html)下(bottom.html)两个页面组成,代码如下: frame 现在假设 top.html (即上面的页面) 有七个 button 来实现对 bottom.html (即下面的页面) 的刷新,可以用以下七种语句,哪个好用自己看着办了。 语句 1. window.parent.frames1.lo

7、cation.reload(); 语句 2. window.parent.frames.bottom.location.reload(); 语句 3. window.parent.frames“bottom“.location.reload(); 语句 4. window.parent.frames.item(1).location.reload(); 语句 5. window.parent.frames.item(bottom).location.reload(); 语句 6. window.parent.bottom.location.reload(); 语句 7. window.pare

8、ntbottom.location.reload(); top.html 页面的代码如下: top.html 下面是 bottom.html 页面源代码,为了证明下方页面的确被刷新了,在装载完页面弹出一个对话框。 bottom.html 页面的代码如下: bottom.html This is the content in bottom.html. 解释一下: 1.window 指代的是当前页面,例如对于此例它指的是 top.html 页面。 2.parent 指的是当前页面的父页面,也就是包含它的框架页面。例如对于此例它指的是framedemo.html。 3.frames 是 window

9、 对象,是一个数组。代表着该框架内所有子页面。 4.item 是方法。返回数组里面的元素。 5.如果子页面也是个框架页面,里面还是其它的子页面,那么上面的有些方法可能不行。 附: Javascript 刷新页面的几种方法: 1 history.go(0) 2 location.reload() 3 location=location 4 location.assign(location) 5 document.execCommand(Refresh) 6 window.navigate(location) 7 location.replace(location) 8 document.URL=

10、location.href 自动刷新页面的方法: 1.页面自动刷新:把如下代码加入区域中 其中 20 指每隔 20 秒刷新一次页面. 2.页面自动跳转:把如下代码加入区域中 其中 20 指隔 20 秒后跳转到 http:/ 页面 3.页面自动刷新 js 版 function myrefresh() window.location.reload(); setTimeout(myrefresh(),1000); /指定 1 秒刷新一次 ASP.NET 如何输出刷新父窗口脚本语句 1. this.response.write(“opener.location.reload();“); 2. this

11、.response.write(“opener.window.location.href = opener.window.location.href;“); 3. Response.Write(“opener.window.navigate(你要刷新的页.asp);“) JS 刷新框架的脚本语句 /如何刷新包含该框架的页面用 parent.location.reload(); /子窗口刷新父窗口 self.opener.location.reload(); ( 或 刷新 ) /如何刷新另一个框架的页面用 parent.另一 FrameID.location.reload(); 如果想关闭窗口时刷新或者想开窗时刷新的话,在中调用以下语句即可。 开窗时刷新 关闭时刷新 window.opener.document.location.reload()

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育教学资料库 > 精品笔记

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。