美文网首页
浏览器地址url截取参数的完美工具方法(正则,好用)

浏览器地址url截取参数的完美工具方法(正则,好用)

作者: 邓男子 | 来源:发表于2020-04-26 14:38 被阅读0次
    //weibo.com/props?age=12&salary=20000
    function getQueryString(key){
        var reg = new RegExp("(^|&)"+key+"=([^&]*)(&|$)");
        var result = window.location.search.substr(1).match(reg);
        return result?decodeURIComponent(result[2]):null;
    }
    

    相关文章

      网友评论

          本文标题:浏览器地址url截取参数的完美工具方法(正则,好用)

          本文链接:https://www.haomeiwen.com/subject/xjodwhtx.html