카테고리1프로그래밍
카테고리2JAVASCRIPT
제목컨텍스트 패스 가져오기 함수
작성자고성훈
작성일2021-07-20 02:18:52
function getContextPath() {
var hostIndex = location.href.indexOf( location.host ) + location.host.length;
return location.href.substring( hostIndex, location.href.indexOf('/', hostIndex + 1) );
};
수정목록