源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

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

  • 时间:2021-09-05 17:06 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:JavaScript实现QueryString获取GET参数的方法
[u]复制代码[/u] 代码如下:
<div id="page"> <select name="select1" id="select-type"> <option value="0">请选择</option> <option value="1">企业</option> <option value="2">产品</option> </select> </div>
[u]复制代码[/u] 代码如下:
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; }); });
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部