본문 바로가기
코드 간편모음

경로, 파일명 가져오기 ( feat. split, substr, substring )

by 찬찬2 2021. 1. 20.

JavaScript Window Location 참고:

 

window.location.href - 현재 페이지의 href (URL) 반환

window.location.hostname - 웹 호스트의 도메인 네임 반환

window.location.pathname - 현재 페이지의 경로와 파일 이름 반환

window.location.protocol - 사용하는 웹 프로토콜 반환 (http:// 혹은 https://)

window.location.assign - 새 document 로드

 

따라서 Javascript로 전체 URL 경로를 가져오려면 다음과 같이 사용할 수 있습니다.

var newURL = window.location.protocol + "//" + window.location.host + "/" + window.location.pathname;

 

www.w3schools.com/js/js_window_location.asp

 

현재 파일명+확장자 얻기

var thisfilefullname = document.URL.substring(document.URL.lastIndexOf("/") + 1, document.URL.length);

 

현재 파일이름의 폴더명 얻기

var thisfilefoldername = thisfilefullname.substring(thisfilefullname.lastIndexOf('.'), 0);

 

댓글