[JQUERY] 어떻게 GET GET와 jQuery로 POST 변수에?
JQUERY어떻게 GET GET와 jQuery로 POST 변수에?
해결법
-
1.GET 매개 변수의 경우, document.location.search에서 그들을 잡아 수 있습니다 :
GET 매개 변수의 경우, document.location.search에서 그들을 잡아 수 있습니다 :
var $_GET = {}; document.location.search.replace(/\??(?:([^=]+)=([^&]*)&?)/g, function () { function decode(s) { return decodeURIComponent(s.split("+").join(" ")); } $_GET[decode(arguments[1])] = decode(arguments[2]); }); document.write($_GET["test"]);
POST 매개 변수의 경우, 당신은
'JQUERY' 카테고리의 다른 글
[JQUERY] 페이지 스크롤없이에 location.hash 수정 (0) | 2020.10.09 |
---|---|
[JQUERY] 읽기, 만들기 jQuery로 삭제 쿠키 [중복] (0) | 2020.10.09 |
[JQUERY] 어떻게 위로 스크롤 또는 jQuery를 사용하여 앵커로 페이지 아래로 하는가? (0) | 2020.10.09 |
[JQUERY] Ajax 요청의 내용 유형 및 데이터 형식은 무엇입니까? (0) | 2020.10.09 |
[JQUERY] jQuery를, 간단한 폴링 예 (0) | 2020.10.09 |