jQuery로 접속 주소(URL) 알아내기

by 조쉬 posted Mar 25, 2021
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

# jQuery 소스
console.log("url1 : "+$(location).attr('href'));
console.log("protocol : "+$(location).attr('protocol'));
console.log("host : "+$(location).attr('host'));
console.log("pathname : "+$(location).attr('pathname'));
console.log("search : "+$(location).attr('search'));

# 출력결과
url1 : http://localhost:8080/msac/main.do?ddd=ddd
protocol : http:
host : localhost:8080
pathname : /msac/main.do
search : ?ddd=ddd