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: