JS获取地址栏参数的方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 用正则表达式获取地址栏参数
function GetQueryString(name) {
     var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
     var r = window.location.search.substr(1).match(reg);
     
     if(r!=null) {
         return  unescape(r[2]);
     } else {
          return null;
    }      
}
 
// 调用
alert(GetQueryString("name1"));
alert(GetQueryString("name2"));

未经允许不得转载:王超博客 » JS获取地址栏参数的方法

赞 (0)

评论 0

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址