Javascript获取地址栏参数

代码如下:
function getParameterByName(name) {
  
    var match = RegExp('[?&]' + name + '=([^&]*)')
                    .exec(window.location.search);
  
    return match ?
        decodeURIComponent(match[1].replace(/\+/g, ' '))
        : null;
  
}
posted @   T#S  阅读(219)  评论(0编辑  收藏  举报
点击右上角即可分享
微信分享提示