JavaScriptでよく使われる戻り値は、自動的にジャンプし、更新し、文のまとめを閉じます.

4165 ワード

本論文の例は、JavaScriptでよく使われるリターン、自動ジャンプ、リフレッシュ、クローズステートメントを述べている.皆さんの参考にしてください.具体的には以下の通りです
1.Javascriptは前のページに戻ります.

   history.go(-1) 
 
は、2つのページを返します.

   history.go(-2) 
 
 
 
2.後退:

   history.back() 
 
3.次のページに戻ります.

   window.history.forward() 
 
4.何ページ目に戻っても、訪問したURLを使うことができます.

   window.history.go(    ) 
 
 
例: 

    のページへ  
  
 
response.Write("")  <br> response.Write("if(!confirm(' ?')){history.back();}")  <br> response.Write("") 
response.Write("history.go(-1);") 
のページへ
 
ページジャンプ:

   onclick="window.location.href='list.aspx'" 
 
 
P.S. 
小テクニック(JSはJSを参照): 

     
  <br> <!--  
  <br> if (typeof SWFObject == "undefined") {  
  <br> document.write('<scr' + 'ipt type="text/javascript" src="/scripts/swfobject-1.5.js"></scr' + 'ipt>');}  
  <br> //-->  
  <br>  
 
 
Javascriptはページのいくつかの方法を更新します. 
1    history.go(0) 
2    location.reload() 
3    location=location 
4    location.assign(location) 
5    document.execCommmand('Refresh') 
6    window.navigate(location) 
7    location.replace(location) 
8    document.URL=location.href 
 
ページの自動更新方法:
1.ページの自動更新:下記のコードをエリアに追加します. 

    
 
20とは、20秒ごとにページを更新することです. 
 
2.ページの自動ジャンプ:下記のコードをセクションに追加します. 

    
 
そのうち20指は20秒ぶりに/www.jb 51.netページにジャンプします. 
 
3.ページ自動更新js版 

     
  <br> function myrefresh()  
  <br> {  
  <br>        window.location.reload();  
  <br> }  
  <br> setTimeout('myrefresh()',1000); //  1       
  <br>  
 
 
ASP.NETは親ウィンドウを更新するスクリプト文をどのように出力しますか? 
1.

   this.response.write("opener.location.reload();"); 
 
 
2.

   this.response.write("opener.window.location.href = opener.window.location.href;"); 
 
 
 
3.

   Response.Write("opener.window.navigate(''      .asp'');") 
 
JSフレームを更新するスクリプト文 

   //                 
  
  <br>    parent.location.reload();  <br>
 
親ウィンドウを更新するサブウィンドウ:

     
  <br>     self.opener.location.reload();  
  <br>  
 
または:

      
 
他のフレームのページをどうやって更新しますか?

     
  <br>    parent.  FrameID.location.reload();  
  <br>  
 
 
ウィンドウを閉じたい時に更新したり、窓を開けたい時に更新したりする場合は、下記の文を呼び出すだけでいいです. 
 
ウィンドウを開くときに更新:

    
 
オフ時の更新:

    
 

     
  <br> window.opener.document.location.reload()  
  <br>  
 
JSは現在のページを閉じて、JSセキュリティの注意をポップアップしません. 

     
  <br> window.opener=null;window.open('','_self','');window.close();  
  <br>  
 
本論文で述べたように、皆さんのjavascriptプログラムの設計に役に立ちます.