이 글은 주로 Javascript 페이지 새로 고침 방법과 location.reload() 사용법을 소개합니다. 도움이 필요한 친구들이 참고하면 좋겠습니다.
Javascript에서 페이지를 새로 고치는 여러 가지 방법:
1history.go(0)
2 location.reload()
3 location=location
4 location.sign(location)
5 document.execCommand(' 새로고침')
6 window.navigate(location)
7 location.replace(location)
8 document.URL=location.href
페이지 자동 새로고침 방법:
1.페이지 자동 새로고침: 추가 다음 코드
<meta http-equiv="refresh" content="20">
20초마다 페이지를 새로 고칩니다. 2. 페이지가 자동으로 이동합니다. 다음 코드를
<meta http-equiv="refresh" content="20;url=http://www.wyxg.com">
예:
<mce:script language="JavaScript"><!-- function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次 // --></mce:script>
경우에 따라 재시도 대화 상자 없이 새로 고침 효과를 얻을 수 있습니다.
js에서 페이지를 새로 고치는 방법에는 여러 가지가 있습니다. js에는 우리가 원하는 기능을 달성할 수 있는 location.reload() 함수가 있습니다.
window.location.reload(true) //브라우저가 서버에 리소스를 다시 요청하고 http 요청 헤더에 캐시 태그를 포함하지 않습니다.
예제 1, 현재 페이지 새로 고침
window.location.href=window.location.href; window.location.reload;
iframe의 name 속성을 사용하여
<script> window.location.reload(); </script>
를 찾습니다.
<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()"> 或 <input type="button" name="Button" value="Button" onclick="document.all.ifrmname.document.location.reload()">
aa.htm 페이지 내용:
<iframe method="post" id ="IFrameName" src="aa.htm" ></iframe>
참고:
window.location.reload;새로 고침 시 데이터를 제출하면 대화 상자가 나타납니다!
<input type ="button" value ="刷新" onclick ="aa()"/> function aa() { (php中文网 www.php.cn 编辑整理) //parent.location.replace(parent.location.href);//服务器端重新创建页面 parent.document.location.reload();//相当于F5 //window.location.href(parent.location.href);//iframe内容重定向 }
Rrefresh the Parent Window :
window.location.href=window.location.href; window.location.reload;
JS 새로고침 페이지 합계! 다양한 JS 새로고침 페이지 코드!
위 내용은 Javascript 새로고침 페이지 메소드 및 location.reload() 사용법 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!