hello world
[자바스크립트, 자바] 현재 url 주소 가져오기 본문
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의 객체)
'WEB > Front' 카테고리의 다른 글
map, reduce 자바스크립트 누적합 구하기 (0) | 2022.12.07 |
---|---|
[자바스크립트, 자바] 특정 문자열 포함 확인 함수 (0) | 2020.04.28 |
$(document).off() , $(document).on() 사용 (0) | 2020.04.23 |
제이쿼리 함수 정리 (0) | 2020.03.17 |
자바스크립트 동적으로 생성된 요소에 이벤트 걸기 (0) | 2020.03.16 |
Comments