GET 방식의 파라미터 값을 스크립트내에서 활용하는 방법 [예제 URL] index.php/?name=doti&age=30 [예제 소스] 1234567891011121314<script>function window.getParameter(strParamName) { var arrResult = null; if (strParamName) { arrResult = location.search.match(new RegExp("[&?]" + strParamName+"=(.*?)(&|$)")); return arrResult && arrResult[1] ? arrResu..