初期値: function () {
var aPairs, aTmp;
var queryString = new String(window.location.search);
queryString.substr(1, queryString.length); ?"
aPairs = queryString.split("&");
for (var i = 0; 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) != "未定義") {
$("#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= " 行;
});
});