728x90
반응형
자바스크립트에서 Contextpath 가져오는 함수에 대해 알아보려고 합니다.
먼저 ContextPath란 http://127.0.0.1:80/animal/login.jsp라는 url에서
animal이 ContextPath를 의미합니다.
아래 함수를 사용하시면 ContextPath를 값을 가져오실 수 있습니다.
function getContextPath() {
var hostIndex = location.href.indexOf( location.host ) + location.host.length;
return location.href.substring( hostIndex, location.href.indexOf('/', hostIndex + 1) );
}
728x90
반응형
'프로그래밍 > JavaScript' 카테고리의 다른 글
자바스크립트 클립보드로 텍스트 복사하기 (1) | 2020.10.11 |
---|---|
html 정규식 사용하여 text만 가져오기 (1) | 2020.10.11 |
자바스크립트 숫자 앞에 0 자동으로 넣기 (0) | 2019.09.14 |
자바스크립트 라디오의 글자(text) 클릭시 라디오 버튼 선택되도록 하기 (0) | 2019.02.17 |
SCRIPT8009: 'Ajax'이(가) 정의되지 않았습니다. 오류 해결하기 (0) | 2019.01.26 |