관리 메뉴

I LOVE EJ

[js] 자바스크립트로 url 주소 가져오기 본문

Web publishing/JavaScript

[js] 자바스크립트로 url 주소 가져오기

BeOne 2013. 12. 2. 11:59

실행url - http://localhost:8088/login/login.do?key=value


-javascript-

location.href -> http://localhost:8088/login/login.do?key=value

location.protocol -> http:
location.host -> localhost:8088
location.pathname -> /login/login.do
location.search -> ?key=value


-jquery-

jQuery(location).attr('href') -> http://localhost:8088/login/login.do?key=value
jQuery(location).attr('protocol') -> http:
jQuery(location).attr('host') -> localhost:8088
jQuery(location).attr('pathname') -> /login/login.do
jQuery(location).attr('search')-> ?key= 
jQuery(location).attr('search')-> ?key=