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);
'코드 간편모음' 카테고리의 다른 글
[크로스 브라우징] ie에서만 스크립트를 따로 적용하고 싶을때 (0) | 2021.04.15 |
---|---|
이미지 사이즈 구하기 (MySql) (0) | 2021.03.18 |
keydown, keyup [event.which & event.shiftKey & event.keyCode] (0) | 2021.01.08 |
input 전체 선택 [live.( ) / if( ){ } / prop( )] (0) | 2020.11.25 |
flag를 활용한 트릭 (0) | 2020.10.30 |
댓글