HTML에서 페이지 점프를 구현하는 방법: 1. 메타를 통해 점프 시간과 페이지를 설정합니다. 2. 태그를 사용하여 직접 점프합니다. 3. 자바스크립트를 통해 점프합니다. 코드는 [window.location.href='index .html'입니다. ].
이 튜토리얼의 운영 환경: windows7 시스템, html5 버전, DELL G3 컴퓨터.
html에서 페이지 점프를 구현하는 방법:
1. HTML에서 점프하려면 메타
<head> <!--只是刷新不跳转到其他页面 --> <meta http-equiv="refresh" content="5"> <!--定时转到其他页面 --> <meta http-equiv="refresh" content="5;url=index.html"> </head>
2를 통해 점프 시간과 페이지를 설정할 수 있습니다.
<a href="http://baidu.com">百度一下</a>
4. html에서 이전 페이지로 이동하는 방법
window.history.go(-1) 또는 window.history.back(-1) html에서
Write
// 直接跳转 window.location.href='index.html'; // 定时跳转 setTimeout("javascript:location.href='index.html'", 5000); 其实两种方式是类似的,只是有的在javascript中写的跳转,另一种直接从html中写跳转 <button id="load" οnclick="window.location.reload('/html/index.html')">跳转</button>
이전 페이지로 이동
<a href=”#” onClick=”JavaScript :history.back(1);”>返回上一页</a> <a href=”#” onClick=”javascript :history.Go(-1);”>返回上一页</a>
관련 학습 권장사항:
위 내용은 HTML에서 페이지 점프를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!