[자바스크립트] location 객체 사용예시
- 카테고리 없음
- 2017. 9. 5. 15:31
[자바스크립트] location 객체 사용예시
현재 문서를 http://naver.com으로 이동
location.href = 'http://naver.com';
location = 'http://naver.com';
현재 문서를 리로드하는 간편한 방법
location.reload();
아래는 현재 윈도우의 문서가 위치하는 URL을 알아내는 방법이다.
console.log(location.toString(), location.href);
location 객체는 URL을 의미에 따라서 별도의 프로퍼티로 제공하고 있다.
console.log(location.protocol, location.host, location.port, location.pathname, location.search, location.hash);
이 글을 공유하기