1. this.response.write("<script>opener.location.reload();</script>");
2. this.response.write("<script>opener.window.location.href = opener.window.location.href;</script>");
3. Response.Write("<script language=javascript>opener.window.navigate(''你要刷新的頁.asp'');</script>")
JS刷新框架的腳本語句
//如何刷新包含該框架的頁面用
<script language=JavaScript>
parent.location.reload();
</script>
//子窗口刷新父窗口
<script language=JavaScript>
self.opener.location.reload();
</script>
( 或 <a href="javascript:opener.location.reload()">刷新</a> )
//如何刷新另一個框架的頁面用
<script language=JavaScript>
parent.otherFrameID.location.reload();
</script>
如果想關閉窗口時刷新或者想開窗時刷新的話,在<body>中調用以下語句即可。
<body onload="opener.location.reload()"> 開窗時刷新
<body onUnload="opener.location.reload()"> 關閉時刷新
<script language="javascript">
window.opener.document.location.reload()
</script>
Javascript刷新頁面(javascript refresh page)的幾種方法:
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=location.href
自動刷新頁面的方法:
1.頁面自動刷新:把如下代碼加入<head>區域中
<meta http-equiv="refresh" content="20">
其中20指每隔20秒刷新一次頁面.
2.頁面自動跳轉:把如下代碼加入<head>區域中
<meta http-equiv="refresh" content="20;url=http://www.wyxg.com">
其中20指隔20秒後跳轉到http://www.wyxg.com頁面
3.頁面自動刷新js版
<script language="JavaScript">
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',1000); //指定1秒刷新一次
</script>
如何制作JQuery Plugin 插件【插件参数的配置】
jQuery Mobile 中文手册 Ajax开发版——初始化部分
转载:真实的用户,真实的中国互联网
创建自定义的jQuery移动主题
HTML5 LocalStorage 本地存储
Safari调试工具
为什么项目经理拿的钱比程序员多?
移动浏览器项目WebApp需要jQuery吗?移动设备放弃jQuery的理由
HTML5设计原则
- 最新文章
-
备忘录(一)
分布式网站架构后续:zookeeper技术浅析
原创:编写jquery 选项卡插件
程序员总结:帮助你早些明白一些道理
jQuery Mobile 入门教程
HTML5 Shiv – 让该死的IE系列支持HTML5吧
jQuery Mobile 中文手册 Ajax开发版(2)
移动网站开发中常用的10段JavaScript代码
Web App和Native App 谁将是未来
Html5新标签解释及用法
- 热门文章
-
性能分析工具firebug.console.profile(title)
HTMl5的sessionStorage和localStorage
jQuery插件开发 其实很简单
【转】深度分析HTML5在移动开发方面的发展状况
触摸屏网站开发系列(一)ios web App应用程序(ios meta)
jQuery Mobile 中文手册 Ajax开发版(1)
Javascript中的函数声明和函数表达式
[翻译]jQuery Mobile入门教程——主题的使用和定制
获得2011开源大奖的jQuery Mobile1.0发布 移动开发
jQuery Mobile 动态加入的html,如何加上jqm自带的样式