* location.replace('url')
- 지정한 url로 이동.
- 히스토리에 현재 페이지를 저장하지 않음 => '뒤로가기' 불가.
* location.href('url')
- 지정한 url로 이동.
- 히스토리에 현재 페이지를 저장 => '뒤로가기' 가능.
현재 페이지 url이 https://www.example.com/current/page 인 경우
* 절대경로 ( ' / '로 시작)
location.replace('/example/page')
=> https://www.example.com/example/page 로 이동.
* 상대경로 ( ' / '없이 시작)
location.replace('example/page')
=> https://www.example.com/current/page/example/page 로 이동.
'JavaScript > 공부공부' 카테고리의 다른 글
[jQuery] jQuery 플러그인 $.fn (사용자 정의 함수) (0) | 2024.11.05 |
---|---|
[JS] FormData 객체 (0) | 2024.11.05 |
[JS] sort(), localeCompare() 함수 (문자열비교) (0) | 2024.08.19 |
[jQuery] .load() 함수 (0) | 2024.08.11 |
[JS] a링크 페이지 이동 막기_javascript:void(0), event.preventDefault() (0) | 2024.08.08 |