본문 바로가기

Programming/javascript

[javascript] URL 주소 가져오기

URL 주소 가져오기



실행 URL

http://localhost:8088/member/find.do?key=value


javascript

location.href http://localhost:8088/member/find.do?key=value

location.protocol : http:

location.host : localhost:8088 

location.pathname/member/find.do

location.search : ?key=value


jquery

$(location).attr('href') http://localhost:8088/member/find.do?key=value

$(location).attr('protocol') : http:

$(location).attr('host') : localhost:8088 

$(location).attr('pathname')/member/find.do

$(location).attr('search')?key=value