javascript: history. go () 와 history. back () 의 차이 및 응용

 
   <input type=button value=   onclick="window.location.reload()">  
  
 
   <input type=button value=   onclick="window.history.go(1)">  
  
 
   <input type=button value=   onclick="window.history.go(-1)">  
  
 
   <input type=button value=   onclick="window.history.forward()">  
  
 
   <input type=button value=   onclick="window.history.back()">   +  <input type=button value=   onclick="window.history.go(-1);window.location.reload()">  
  

C \ # 웹 프로그램 에서 페이지 단 추 를 위 한 이전 페이지 코드 를 쓰 십시오.
 
  
this.RegisterClientScriptBlock("E", "<script language=javascript>history.go(-2);</script>");

그 중에서 history. go (- 2) 는 - 2 라 고 써 야 합 니 다. 버튼 이벤트 가 발생 하기 전에 페이지 를 한 번 새로 고 쳤 기 때문에 - 2 여야 합 니 다.
 
  
Response.Write("<script language=javascript>history.go(-2);</script>");

여기 도 '- 2' 라 고 써 야 합 니 다.스 크 립 트 를 직접 쓰 는 것 과 는 다 릅 니 다.history. back () 은 회의 이전 페이지 입 니 다.
 
  
i=1
history.go(i)
[html]

history.go(0) JS , IE 、 。
。 , , 。
: :
 
   [code]  
  
 
   function onLoadPage(){  
  
 
   if(event.srcElement.tagName=="SPAN"){  
  
 
   oFrame=top.window.middle.frames[2];  
  
 
   oTxt=event.srcElement.innerText;  
  
 
   switch(oTxt){  
  
 
   case "   ":  
  
 
   oFrame.history.go(1);  
  
 
   case "   ":  
  
 
   oFrame.history.back();  
  
 
   case "   ":  
  
 
   oFrame.location.reload();  
  
 
   }   
  
 
   }   
  
 
   }   
  

jsp 페이지 를 열 면 클 라 이언 트 스 크 립 트 로 새로 고침 한 것 이 분명 합 니 다.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=location.href  
  

좋은 웹페이지 즐겨찾기