js获取url中参数

js方法

function getParameterValue(url) {
    var result = location.search.match(new RegExp("[\?\&]" + url + "=([^\&]+)","i"));
    if (result == null || result.length < 1){
        return "";
    }else {
        return result[1];
    }
}

 

posted @ 2019-03-20 10:51  無玑小姐  阅读(185)  评论(0编辑  收藏  举报