728x90
SMALL
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
주소로 넘겨준 파라미터가 위와 같다면 아래와 같이 활용해주면 된다
console.log(getParameterByName("fclt_sn"));
console.log(getParameterByName("fclt_type2"));
728x90
LIST
'Front > Javascript·Jquery' 카테고리의 다른 글
지정시간이 지날때까지 브라우저에 이벤트 없으면 세션삭제 후, 로그인페이지로 이동하기 (0) | 2022.10.25 |
---|---|
jQuery.ajax() 중복요청 처리 방지하기 (0) | 2022.08.16 |
[chart.js] line chart에서 기준 값 이상은 다른색으로 표현하기, line color 변경, 그라데이션없이 단색으로 설정하기 (1) | 2022.08.05 |
jquery 스크롤이 있는 영역의 특정한 행으로 스크롤 이동하기, offset안먹힐때 , position (0) | 2022.07.11 |
[javascript ,jquery] trigger 처음에 안먹힐때, 클릭이벤트 안먹힐 때, document trigger click, 동적이벤트 후 트리거 (0) | 2022.07.05 |
댓글