JavaScript 가 QueryString 을 실현 하여 GET 인 자 를 얻 는 방법

 
<div id="page">
<select name="select1" id="select-type">
<option value="0"> </option>
<option value="1"> </option>
<option value="2"> </option>
</select>
</div>
 
QueryString = {
data: {},
Initial: function () {
var aPairs, aTmp;
var queryString = new String(window.location.search);
queryString = queryString.substr(1, queryString.length); //remove "?"
aPairs = queryString.split("&");
for (var i = 0; i < aPairs.length; i++) {
aTmp = aPairs[i].split("=");
this.data[aTmp[0]] = aTmp[1];
}
},
GetValue: function (key) {
return this.data[key];
}
}

$(function () {
//
QueryString.Initial();

var type = QueryString.GetValue("type");

if (typeof (type) != "undefined") {
$("#select-type").val(type);
}

$("#select-type").bind("change", function () {
var row = $(this).find("option:selected").val();

//alert(row);
if (row == 1)
location.href = "?type=" + row;
if (row == 2)
location.href = "?type=" + row;
});
});

좋은 웹페이지 즐겨찾기