js 지정 페이지 로 이동 하 는 4 가지 방법 과 시간 지연 점프

748 단어
한 페이지 A 에서 다른 페이지 B 로 넘 어 가 려 면 js 는 A 의 js 코드 에 점프 코드 를 추가 합 니 다.
JS 점프 는 다음 과 같은 몇 가지 방법 이 있 습 니 다.
   :(   b.html)
<script language="javascript" type="text/javascript">
window.location.href="b.html";
</script>
   :(      )
<script language="javascript">
window.history.back(-1);
</script>
   :
<script language="javascript">
window.navigate("b.html");
</script>
   :
<script language="JavaScript">
self.location=’b.html’;
</script>
   :
<script language="javascript">
top.location=’b.html’;
</script>

js                 
setTimeout(function(){
location.href="      ";

},5000);
5000 5 

좋은 웹페이지 즐겨찾기