通过正则获取URL中的参数

闲着无聊用正则做了一个获取URL参数的小算法^_^

function getParam(name) {

    var objs = window.location.search.match("(\\?|&)" + name + "=(.*\?)(&|\$)");

    if (objs) {

        return objs[2];

    }

    return "";

}

以前都是用数组的方式处理,感觉用正则更简单,不知道还能不能优化呢

你可能感兴趣的:(url)