Programing/JavaScript

javascript contextPath 구하는 방법 ctx, window.location.pathname, 프로젝트명 구하는 법

리커니 2018. 1. 25.
반응형

 

javascript contextPath 구하는 방법 ctx, window.location.pathname, 프로젝트명 구하는 법

 

1. taglib 사용

 

1
<c:set var="ctx" value="${pageContext.request.contextPath}" />
cs

 

2. window 객체에서 추출

 

1
const ctx = window.location.pathname.substring(0window.location.pathname.indexOf("/",2));
cs

 

3. request 에서 추출

 

1
<span id="ctx" style="display:none;"><%=request.getContextPath()%></span>
cs
반응형

댓글

💲 추천 글