목차
reload() 예제 - 캐시에서 페이지 가져와 새로고침 (= false 옵션)
reload() 예제 - 서버에서 페이지 가져와 새로고침 (= true 옵션)
reload() 정의
reload() 구문
reload() 예제 - 일정시간 후 페이지 자동 새로고침
reload() 예제 - 브라우저창 크기 변경 시 새로고침
reload() 예제 - 캐시에서 페이지 가져와 새로고침 (= false 옵션)
[예제1] - HTML과 스크립트 분리.
<button onclick="homzzang()" >새로고침</button>
<script>
function homzzang() {
location.reload();
}
</script>
[예제2] - HTML과 스크립트 일체
<button onclick="location.reload()" >캐시새로고침</button>
※ location.reload() 메서드 기본값이라, false는 생략 가능.
reload() 예제 - 서버에서 페이지 가져와 새로고침 (= true 옵션)
<button onclick="homzzang()">새로고침</button>
<script>
function homzzang() {
location.reload(true );
}
</script>
<button onclick="location.reload(true )">서버새로고침</button>
reload() 정의
페이지 새로고침. (= 리로드)
모든 주요브라우저 지원.
reload() 구문
location.reload(forceGet )
[매개변수]
forceGet
선택. 새로고침 방법 지정. (= 리로드 타입 지정)
false : 캐시 에서 가져와 현재페이지 새로고침. (기본값.)
true : 서버 에서 가져와 현재페이지 새로고침.
reload() 예제 - 일정시간 후 페이지 자동 새로고침
<script>
setTimeout (function(){location.reload();},100); //0.1초 후 새로고침
</script>
reload() 예제 - 브라우저창 크기 변경 시 새로고침
※ 상황에 따라, innerWidth 대신 outerWidth 사용.
<script>
addEventListener("resize ", () => {
if (innerWidth === 1024) location.reload();
} );
</script>
비타주리 님 (221226) https://sir.kr/qa/484339
주소 복사
랜덤 이동