ejyoo's 개발 노트

utl split js code 본문

카테고리 없음

utl split js code

ejyoovV 2021. 4. 7. 12:27

기본

window.location

 

주소 가져오기

window.location.href

 

? 인덱스 찾기

window.location.href.indexOf("?")

 

location.href.substr(window.location.href.indexOf("?")+1);

location.href.substr(window.location.href.indexOf("?")+1).split("&");

location.href.substr(window.location.href.indexOf("?")+1).split("&")[1];

 

location.href.substr(window.location.href.indexOf("?")+1).split("&")[1].split("=");