새소식

Js/JavaScript

js - 현재 페이지 url 관련 (location 객체)

  • -

1. 자주 사용하는 location 객체

// Ex) https://test.com:80/newpost?type=post
window.location.href

// Ex) https:
window.location.protocol 

// Ex) test.com:80
window.location.host 

// Ex) test.com
window.location.hostname 

// Ex) 80
window.location.port 

// Ex) newpost
window.location.pathname 

// Ex) ?type=post
window.location.search

2. 참고

https://hianna.tistory.com/464

반응형
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.