hello world

[자바스크립트, 자바] 현재 url 주소 가져오기 본문

WEB/Front

[자바스크립트, 자바] 현재 url 주소 가져오기

sohyun_92 2020. 4. 28. 15:00
728x90

[자바스크립트 : 현재 url 주소 가져오기]

1. 현재 URL 전체를 가져옴 

http://localhost:8080/mbr/bbslist.do

자바스크립트 : window.location.href  

제이쿼리 : $(location).attr('href')

2. 현재 경로 가져옴

/mbr/bbslist.do

자바스크립트:  window.location.pathname 

제이쿼리 : $(location).attr('pathname')


window.location.hostname
window.location.pathname 
window.location.href
window.location.port
window.location.protocol 

 

[자바 :현재 url 가져오기]

1. 현재 URL 전체를 가져옴 

http://localhost:8080/mbr/bbslist.do

자바 : request.getRequestURL()  

(request는 HttpServletRequest의 객체)

2. 현재 경로 가져옴

/mbr/bbslist.do

자바 : request.getRequestURI()

(request는 HttpServletRequest의 객체)

 

Comments