Script

자바스크립트 url 주소 가져오기

자바초보자 2016. 7. 21. 17:06
728x90

 

 

-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=

 

 

728x90