(GET방식 매개변수 값 받아오기)
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript">
function fn_load() {
var str = returnUrlParams();
alert(str);
}
function returnUrlParams() {
var array = [], hash;
//직접가져오기
//var url = "http://goddfs?idx=233&name=goddfs";
//var url_Address = url.slice(url.indexOf('?') + 1).split('&');
//URL 에서 가져오기
var url_Address = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < url_Address.length; i++) {
hash = url_Address[i].split('=');
array.push(hash[1]);
//console.log(hash);
array[hash[0]] = hash[1];
}
return array;
}
</script>
</head>
<body>
<form id="form1" runat="server" >
<div>
<input type="button" id="btnOK" onclick="fn_load();" value="버튼" />
<input type="text" id="txt" />
</div>
</form>
</body>
</html>
결과화면입니다.
끝~
'jQuery | javascript | CSS' 카테고리의 다른 글
Uncaught SecurityError: Blocked a frame with origen ... (2) | 2015.10.29 |
---|---|
태그로 감싸진 내용값 가져오기 (0) | 2014.10.26 |
03.jquery jstree 웹 서비스 호출해서 결과값 화면에 출력하기 (0) | 2014.08.24 |
02.jQuery - jstree ... DB에서 받은 값 json형식으로 출력하기 (0) | 2014.08.23 |
01.jQuery - jstree 기본 구성 (0) | 2014.08.21 |
Comments