반응형
location.href / location.replace()
개념적 차이
- location.href 는 프로퍼티
=> location.href = 'example.page';
- location.replace() 는 메서드
=> location.replace('example.page');
기능적 차이
- location.href 는 새로운 페이지 이동 후 히스토리에 기록한다.
- location.replace() 현재 페이지를 새로운 페이지로 변경, 히스토리에 기록하지 않음.
(removes the URL of the current document from the document history)
=> replace()의 경우 뒤로가기를 통해 이전 페이지로 갈 수 없음.
반응형
'IT > JSP&javascript&jQuery' 카테고리의 다른 글
forward 와 redirect 차이 (0) | 2017.12.21 |
---|---|
jQuery를 이용한 스크롤 더보기 (0) | 2017.08.04 |
관계연산자 ==, === 의 차이 (0) | 2017.06.26 |
자바스크립트 데이터 타입 (0) | 2017.06.22 |
userAgent 구분 스크립트 (Android/iOS/Mobile) (0) | 2017.06.22 |