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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[2022.04.19] 자바스크립트 this - 생성자 함수와 이벤트리스너에서의 this18일에 this에 대해 공부하면서 적었던 일반적인 함수나 객체에서의 this가 아닌 오늘은 이벤트리스너와 생성자 함수 안에서의 this를 살펴보기로 했다. new 키워드를 붙여 함수를 생성자로 사용할 때 this는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.