by Nathan
현재 URL 확인하기
1. javascript location.href : http://localhost:8080/test/main.do?param=value location.protocol : http: location.host : localhost:8080 location.pathname : /test/main.do location.search : ?param=value 2. jquery $(location).attr('href') : http://localhost:8080/test/main.do?param=value $(location).attr('protocol') : http: $(location).attr('host') : localhost:8080 $(location).attr('pathname') : /test..
Programming/JavaScript, Json
2016. 1. 12. 11:28