개발자의 길

[javascript] location 변수에 대한 값들 본문

2. JS

[javascript] location 변수에 대한 값들

자르르 2021. 6. 10. 16:49


 자바스크립트의 window.location에는 URL정보를 볼 수 있는 변수들이 있는데

아래의 내용은 http://test.local:8088/test.jsp?gg=1 주소를 실행시켰을때 반환될 수 있는 정보들의 예 입니다.

 

 

 

window.location.hostname; // => kftc.local

window.location.href; // => http://kftc.local:8088/test.jsp

window.location.host; // => kftc.local:8088

window.location.port; // => 8088

window.location.pathname; // => test.jsp

window.location.search; // => ?gg=1

window.location.protocol; // => http:


이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
공유하기 링크
Comments