通过正则获取URL中的参数

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

function getParam(name) {
    var objs = window.location.search.match("(\\?|&)" + name + "=(.*\?)(&|\$)");
    if (objs) {
        return objs[2];
    }
    return "";
}

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

posted @ 2014-06-12 10:58  TiestoRay  阅读(339)  评论(0编辑  收藏  举报