JavaScript自動(dòng)刷新頁(yè)面;
使用JavaScript location.reload方法刷新網(wǎng)頁(yè)。當(dāng)用戶點(diǎn)擊一個(gè)鏈接此代碼可以自動(dòng)在一個(gè)事件調(diào)用。
如果想使用鼠標(biāo)點(diǎn)擊刷新網(wǎng)頁(yè),可以用下面的代碼:
Refresh Page
要了解它更好的辦法,可以刷新頁(yè)面
自動(dòng)刷新:
還可以使用JavaScript后自動(dòng)給定時(shí)間段,以刷新頁(yè)面。以下是每5秒后會(huì)刷新此頁(yè)面的例子??梢愿淖冞@個(gè)時(shí)候按您的要求。
This page will refresh every 5 seconds.
這里的 setTimeout()是一個(gè)內(nèi)置的JavaScript函數(shù),可用于給定的時(shí)間間隔之后執(zhí)行另一個(gè)函數(shù)。
javascript 強(qiáng)制刷新頁(yè)面的實(shí)現(xiàn)代碼
Javascript刷新頁(yè)面的幾種方法:
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
自動(dòng)刷新頁(yè)面的方法:
1.頁(yè)面自動(dòng)刷新:把如下代碼加入區(qū)域中
其中20指每隔20秒刷新一次頁(yè)面.
2.頁(yè)面自動(dòng)跳轉(zhuǎn):把如下代碼加入區(qū)域中
其中20指隔20秒后跳轉(zhuǎn)到http://www.jb51.net頁(yè)面
3.頁(yè)面自動(dòng)刷新js版
代碼如下:
ASP.NET如何輸出刷新父窗口腳本語(yǔ)句
1. this.response.write("");
2. this.response.write("");
3. Response.Write("")
JS刷新框架的腳本語(yǔ)句
//如何刷新包含該框架的頁(yè)面用
//子窗口刷新父窗口
( 或
刷新 )
//如何刷新另一個(gè)框架的頁(yè)面用
如果想關(guān)閉窗口時(shí)刷新或者想開窗時(shí)刷新的話,在中調(diào)用以下語(yǔ)句即可。
開窗時(shí)刷新
關(guān)閉時(shí)刷新
//跳出頁(yè)面
其他頁(yè)面刷新的方式;
1.onResume()方法
activity或fragment頁(yè)面中(簡(jiǎn)稱原頁(yè)面)啟動(dòng)新的頁(yè)面(簡(jiǎn)稱新頁(yè)面),新頁(yè)面返回時(shí)需要原頁(yè)面刷新數(shù)據(jù),觀察他們的生命周期可以看出,啟動(dòng)新的頁(yè)面,原頁(yè)面會(huì)依次調(diào)用onPause(), and onStop()方法,當(dāng)新的頁(yè)面關(guān)閉返回時(shí),原頁(yè)面會(huì)調(diào)用onStart(),onResume(),因此把加載數(shù)據(jù)放到onResume()方法中即可
@Override
public void onResume() {
super.onResume();
getData();//加載數(shù)據(jù)
}
.startActivityForResult方法
三種情況
a.用新頁(yè)面關(guān)閉的默認(rèn)碼,原頁(yè)面就刷新
設(shè)置返回碼
private int requestCode = 0X5;//返回碼大于零
啟動(dòng)新頁(yè)面
startActivityForResult(new Intent(context,NewActivity.class).putExtras(bundle), requestCode);
//攜帶bundle啟動(dòng)新頁(yè)面
新頁(yè)面關(guān)閉時(shí)會(huì)自動(dòng)調(diào)用Activity.RESULT_CANCELED,不需要在新頁(yè)面寫結(jié)果碼代碼
原頁(yè)面刷新數(shù)據(jù):
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
if (requestCode == this.requestCode && resultCode == Activity.RESULT_CANCELED) {
//刷新數(shù)據(jù)
}
b.改寫新頁(yè)面關(guān)閉時(shí)的默認(rèn)碼,原頁(yè)面刷新
設(shè)置結(jié)果碼為RESULT_OK
覆寫finish( )方法
@Override
public void finish() {
setResult(RESULT_OK);
super.finish();
}
原頁(yè)面刷新數(shù)據(jù):
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
if (requestCode == this.requestCode && resultCode == Activity.RESULT_OK) {
//加載數(shù)據(jù)
}
}
c.新頁(yè)面有特定操作,比如提交數(shù)據(jù),原頁(yè)面才刷新數(shù)據(jù)
可以在新頁(yè)面設(shè)置requestCode,這也是最通用的方法,不 累述
3.其他方法
接口回調(diào),廣播,觀察者模式
.net頁(yè)面刷新的方式;
第一:
private void Button1_Click( object sender, System.EventArgs e )
{
Response.Redirect( Request.Url.ToString( ) );
}
第二:
private void Button2_Click( object sender, System.EventArgs e )
{
Response.Write( "
" );
}
第三:
private void Button3_Click( object sender, System.EventArgs e )
{
Response.AddHeader( "Refresh","0" );
}
第四:
private void Button6_Click( object sender, System.EventArgs e )
{
//好像有些不對(duì)?
//Response.Write( "
" );
}
第五:(需替換<>)
第六:
用window.location.href實(shí)現(xiàn)刷新另個(gè)框架頁(yè)面
在寫ASP.Net程序的時(shí)候,我們經(jīng)常遇到跳轉(zhuǎn)頁(yè)面的問題,我們經(jīng)常使用Response.Redirect ,如果客戶要在跳轉(zhuǎn)的時(shí)候使用提示,這個(gè)就不靈光了,如:
Response.Write("");
Response.Redirect("main.html");
這時(shí)候我們的提示內(nèi)容沒有出來(lái)就跳轉(zhuǎn)了,和Response.Redirect("main.html");沒有任何區(qū)別。
這時(shí)我們采用下面代碼試驗(yàn)一下:
Response.Write("");
Response.Write("");
這個(gè)即實(shí)現(xiàn)了我們的要求,在提示后,跳轉(zhuǎn)頁(yè)面。
最重要的是window.location.href 語(yǔ)句可以實(shí)現(xiàn)一個(gè)框架的頁(yè)面在執(zhí)行服務(wù)器端代碼后刷新另一個(gè)框架的頁(yè)面(Response.Redirect無(wú)法達(dá)到,至少我沒有發(fā)現(xiàn)):
如:index.htm頁(yè)面中有二個(gè)框架,分別為 frameLeft和frameRight,在frameRight頁(yè)面中執(zhí)行服務(wù)器端代碼后刷新frameLeft中的頁(yè)面。
先前最常見的是注冊(cè)之后,自動(dòng)刷新登陸框,讓登陸框換成已登陸頁(yè)面,只要在注冊(cè)成功的代碼之后加上一段,即可以實(shí)現(xiàn)刷新另個(gè)框架的頁(yè)面。代碼如下:
Response.Write("");
Response.Write("");
自動(dòng)刷新頁(yè)面的實(shí)現(xiàn)方法總結(jié):
1)
10表示間隔10秒刷新一次
2)
如果是你要刷新某一個(gè)iframe就把window給換成frame的名字或ID號(hào)
3)
4>
function abc()
{
window.location.href="/blog/window.location.href";
setTimeout("abc()",10000);
}
刷新本頁(yè):
Response.Write("")
刷新父頁(yè):
Response.Write("")
轉(zhuǎn)到指定頁(yè):
Response.Write("")
刷新頁(yè)面實(shí)現(xiàn)方式總結(jié)(HTML,ASP,JS)
'by aloxy
定時(shí)刷新:
1,
說(shuō)明:url是要刷新的頁(yè)面URL地址
2000是等待時(shí)間=2秒,
2,
說(shuō)明:
n is the number of seconds to wait before loading the specified URL.
url is an absolute URL to be loaded.
n,是等待的時(shí)間,以秒為單位
url是要刷新的頁(yè)面URL地址
3,<%response.redirect url%>
說(shuō)明:一般用一個(gè)url參數(shù)或者表單傳值判斷是否發(fā)生某個(gè)操作,然后利用response.redirect 刷新。
4,刷新框架頁(yè)
〈script language=javascript>top.leftFrm.location.reload();parent.frmTop.location.reload();彈出窗體后再刷新的問題
Response.Write("");//open
Response.Write("");
在子窗體頁(yè)面代碼head中加入
刷新的內(nèi)容加在 if (!IsPostBack) 中
在框架頁(yè)中右面刷新左面
//刷新框架頁(yè)左半部分
Response.Write("");
頁(yè)面定時(shí)刷新功能實(shí)現(xiàn)
有三種方法:
1,在html中設(shè)置:
xxxxx之後加入下面這一行即可!
定時(shí)刷新:
10代表刷新間隔,單位為秒
2.jsp
<% response.setHeader("refresh","1"); %>
每一秒刷新一次
3.使用javascript: