programming/javascript
자바스크립트 URL 정보
hotdogya
2012. 11. 19. 09:58
매일 까먹는 url 정보가져오기
정리가 잘되어있음
http://kdarkdev.tistory.com/124
http://kftc.local:8088/test.jsp?gg=1 실행했을때 정보들
### js
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: