디렉토리 구조:
콘텐츠 구조 [-]
html 구현
javascript 구현
결합된 상호 JavaScript 구현(IE)
Firefox가 innerText를 지원하지 않는 문제 해결
상호 자바스크립트 구현 결합(IE, Firefox)
참고기사
자세히 설명하기 위해 아래에 5가지 예시를 나열했습니다. 이들 예시의 주요 기능은 5초 후 자동으로 점프합니다. hello.html 파일을 동일한 디렉터리에 저장합니다(필요에 따라 수정).
1) html 구현
<head> <!-- 以下方式只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="10"> <!-- 以下方式定时转到其他页面 --> <meta http-equiv="refresh" content="5;url=hello.html"> </head>
장점: 단순
단점: Struts Tiles에서 사용할 수 없음
2) 자바스크립트 구현
<script language="javascript" type="text/javascript"> // 以下方式直接跳转window.location.href='hello.html';// 以下方式定时跳转setTimeout("javascript:location.href='hello.html'", 5000); </script>
장점: 유연성, 더 많은 다른 기능과 결합 가능
단점: 다양한 브라우저에 영향을 받음
3) 결합된 상호 자바스크립트 구현(IE)
<span id="totalSecond">5</span> <script language="javascript" type="text/javascript"> second ="redirect()", 1000=--(second<0) location.href='hello.html'</script>
장점: 사용자 친화적
단점: firefox에서 지원되지 않음(firefox The 스팬, p 등의 innerText 속성은 지원되지 않습니다.)
3') 역수(firefox)의 자바스크립트 구현과 결합
<script language="javascript" type="text/javascript"> var second = document.getElementById('totalSecond').textContent; setInterval("redirect()", 1000); function redirect() { document.getElementById('totalSecond').textContent = --second; if (second < 0) location.href = 'hello.html'; } </script>
4) Firefox에서 innerText를 지원하지 않는 문제 해결
<span id="totalSecond">5</span><script language="javascript" type="text/javascript"> if(navigator.appName.indexOf("Explorer") > -1){ document.getElementById('totalSecond').innerText = "my text innerText"; } else{ document.getElementById('totalSecond').textContent = "my text textContent"; } </script>
5) 상호 자바스크립트 구현과 결합(IE, Firefox)
<span id="totalSecond">5</span> <script language="javascript" type="text/javascript"> var second = document.getElementById('totalSecond').textContent; if (navigator.appName.indexOf("Explorer") > -1) { second = document.getElementById('totalSecond').innerText; } else { second = document.getElementById('totalSecond').textContent; } setInterval("redirect()", 1000); function redirect() { if (second < 0) { location.href = 'hello.html'; } else { if (navigator.appName.indexOf("Explorer") > -1) { document.getElementById('totalSecond').innerText = second--; } else { document.getElementById('totalSecond').textContent = second--; } } } </script>
[HTML] HTML 페이지로 이동하는 5가지 방법 관련 기사를 더 보려면 PHP 중국어 웹사이트를 주목하세요!