728x90
반응형
질문 : JavaScript를 사용하여 페이지를 다시로드하는 방법
JavaScript를 사용하여 페이지를 다시로드하려면 어떻게해야합니까?
모든 브라우저에서 작동하는 방법이 필요합니다.
답변
자바 스크립트 1.2
window.location.reload(false);
// If we needed to pull the document from
// the web-server again (such as where the document contents
// change dynamically) we would pass the argument as 'true'.
자바 스크립트 1.1
window.location.replace(window.location.pathname + window.location.search + window.location.hash);
// does not create a history entry
enter code here
자바 스크립트 1.0
window.location.href = window.location.pathname + window.location.search + window.location.hash;
// creates a history entry
출처 : https://stackoverflow.com/questions/3715047/how-to-reload-a-page-using-javascript
728x90
반응형
'프로그래밍 언어 > HTML,CSS,JS' 카테고리의 다른 글
자바스크립트 변수가 존재하는지 확인하는 방법 (0) | 2021.12.13 |
---|---|
JavaScript를 사용하여 텍스트 input 필드의 값을 확인하는 방법 (0) | 2021.12.13 |
CSS :: before 또는 :: after 를 자바스크립트로 제어하는 방법 (0) | 2021.12.11 |
form을 다른 페이지로 제출하는 방법 (0) | 2021.12.10 |
JavaScript 객체가 비었는지 테스트 하는 방법 (0) | 2021.12.10 |