반응형

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


출처: http://beone.tistory.com/573

반응형
,