른록노트
[Javascript] javascript로 주소URL에서 파라미터 가져오는 방법 본문
1 2 3 4 5 6 7 8 9 10 11 12 | function getUrlVars() { var vars = [], hash; var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for(var i = 0; i < hashes.length; i++) { hash = hashes[i].split('='); vars.push(hash[0]); vars[hash[0]] = hash[1]; } return vars; } | cs |
참고사이트
반응형
Comments