JavaScript实现QueryString获取GET参数的方法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

JavaScript实现QueryString获取GET参数的方法

  2020-05-13 我要评论
复制代码 代码如下:

<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;
});
});

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们