본문 바로가기

컴퓨터/Javascript

JavaScript URI

1. 현재 URI

window.location.href

2. 쿼리스트링 가져오기

function getUrlParams() {
    var params = {};
    window.location.search.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(str, key, value) { params[key] = value; });
    return params;
}

결과는 객체로 반환된다.

'컴퓨터 > Javascript' 카테고리의 다른 글

JavaScript 날짜, 시간  (0) 2019.07.15
JavaScript random 랜덤  (0) 2019.07.11
JavaScript Module 자바스크립트 모듈  (0) 2019.05.02
문자열을 배열로 변환하기 split  (0) 2019.03.10
Javascript focus()  (0) 2019.03.07