url: index.php?id=123 코드 복사 코드는 다음과 같습니다. <br>function GetRequest() { <br>var url = location.search; //url에서 "?" 문자 뒤의 문자열 가져오기<br>var theRequest = new Object() <br>if (url.indexOf("?") != -1) { <br>var str = url.substr(1) <br>strs = str.split("&") ; <br> for ( var i = 0; i < strs.length; i ) { <BR>theRequest[strs[i].split("=")[0]] = unescape(strs[i].split ("=" )[1]); <BR>} <BR>} <BR>return theRequest; <BR>} <BR>var Request=undefine; <BR>Request=GetRequest(); =요청["id"] <BR>