欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Javascript获取地址栏参数

程序员文章站 2024-02-18 08:31:04
...
代码如下:
function getParameterByName(name) {
 
    var match = RegExp('[?&]' + name + '=([^&]*)')
                    .exec(window.location.search);
 
    return match ?
        decodeURIComponent(match[1].replace(/\+/g, ' '))
        : null;
 
}

转载于:https://www.cnblogs.com/olartan/archive/2011/03/08/1977299.html