function getContextPath(){
var offset=location.href.indexOf(location.host)+location.host.length;
var ctxPath=location.href.substring(offset,location.href.indexOf('/',offset+1));
return ctxPath;
}
사용 예)
function home() {
location.href = getContextPath()+'/index.do';
}
# 주의할 점은 getContextPath()와 url 사이에 공백이 있으면 안된다.
출처 : http://blog.naver.com/PostView.nhn?blogId=lsv400&logNo=100044880331&redirect=Dlog&widgetTypeCall=true
'Information Technology' 카테고리의 다른 글
[taglib] c:url 사용 시 주의 사항 (image, js, css 경로) (0) | 2011.08.26 |
---|---|
윈도우 XP 폴더 동시 접속자 늘리기 (0) | 2011.08.22 |
Windows XP 메모리 최적화 가이드 (0) | 2010.08.06 |