기본 콘텐츠로 건너뛰기

자바스크립트로 url 주소, 파라미터 가져오기, search, searchParams - javascript

자바스크립트로 url 주소, 파라미터 가져오기 searchParams


js

// url이 https://honeydanji.healthsarang.com?category=39 일 때

// 파라미터만 가져오기
console.log(window.location.search);
// "?category=39"

// 특정 파라미터만 가져오기
console.log(new URL(window.location).searchParams.get("category"));
// "39"

console.log(new URL(window.location).searchParams.getAll("category"));
// ["39"] <= 배열로 리턴됨

끝.