java中⾃动刷新的语句_页⾯⾃动刷新代码⼤全页⾯⾃动刷新代码⼤全,基本上所有要求⾃动刷新页⾯的代码都有,⼤家可以⾃由发挥做出完美的页⾯。
1)
10表⽰间隔10秒刷新⼀次
2)
load(true);
如果是你要刷新某⼀个iframe就把window给换成frame的名字或ID号
3)
window.navigate("本页⾯url");
4>
function abc()
{
window.location.href="/blog/window.location.href";
setTimeout("abc()",10000);
}
刷新本页:
Response.Write("")
刷新⽗页:
Response.Write("")
转到指定页:
Response.Write("")
刷新页⾯实现⽅式总结(HTML,ASP,JS)
'by aloxy
定时刷新:
1,
说明:url是要刷新的页⾯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参数或者表单传值判断是否发⽣某个操作,然后利⽤direct 刷新。
4,刷新框架页快捷指令url代码大全
〈script language=javascript>top.load();parent.load(); 弹出窗体后再刷新的问题
Response.Write("");//open
Response.Write("");
在⼦窗体页⾯代码head中加⼊
刷新的内容加在 if (!IsPostBack) 中
在框架页中右⾯刷新左⾯
//刷新框架页左半部分
Response.Write("
Response.Write("parent.left.location.href='PayDetailManage_Left.aspx'");
Response.Write("");
页⾯定时刷新功能实现
有三种⽅法:
1,在html中设置:
之後加⼊下⾯这⼀⾏即可!
定时刷新:
10代表刷新间隔,单位为秒
2.jsp
每⼀秒刷新⼀次
3.使⽤javascript:
setTimeout("load();",1000);
⼀秒⼀次
页⾯⾃动跳转:
window.location.href="mian.aspx";
<(0);//window.close(); //关闭浏览器此页的窗⼝
先来看⼀个简单的例⼦:
下⾯以三个页⾯分别命名为frame.html、top.html、bottom.html为例来具体说明如何做。
frame.html 由上(top.html)下(bottom.html)两个页⾯组成,代码如下:
frame
现在假设top.html (即上⾯的页⾯) 有七个button来实现对bottom.html (即下⾯的页⾯) 的刷新,可以⽤以下七种语句,哪个好⽤⾃⼰看着办了。
语句1. window.parent.frames[1].load();
语句2. window.parent.frames.load();
语句3. window.parent.frames["bottom"].load();
语句4. window.parent.frames.item(1).load();
语句5. window.parent.frames.item('bottom').load();
语句6. window.parent.load();
语句7. window.parent['bottom'].load();
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对象,是⼀个数组。代表着该框架内所有⼦页⾯。
4.item是⽅法。返回数组⾥⾯的元素。
5.如果⼦页⾯也是个框架页⾯,⾥⾯还是其它的⼦页⾯,那么上⾯的有些⽅法可能不⾏。
附:
Javascript刷新页⾯的⼏种⽅法:
(0)
load()
3 location=location
4 location.assign(location)
Command('Refresh')
6 window.navigate(location)
place(location)
8 document.URL=location.href
⾃动刷新页⾯的⽅法:
1.页⾯⾃动刷新:把如下代码加⼊
区域中
其中20指每隔20秒刷新⼀次页⾯.
2.页⾯⾃动跳转:把如下代码加⼊
区域中
3.页⾯⾃动刷新js版
function myrefresh()
{
load();
}
setTimeout('myrefresh()',1000); //指定1秒刷新⼀次ASP.NET如何输出刷新⽗窗⼝脚本语句
1. sponse.write("");
2. sponse.write("");
3. Response.Write("")
JS刷新框架的脚本语句
//如何刷新包含该框架的页⾯⽤
load();
/
/⼦窗⼝刷新⽗窗⼝
self.load();
( 或 刷新 )
//如何刷新另⼀个框架的页⾯⽤
parent.另⼀load();
如果想关闭窗⼝时刷新或者想开窗时刷新的话,在
中调⽤以下语句即可。
window.opener.load()
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论