美文网首页
网址获取某一参数

网址获取某一参数

作者: 念念碎平安夜 | 来源:发表于2020-11-20 09:42 被阅读0次
    CommonUtils.getQueryString = (name) = > {
        let reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
        let r = window.location.search.substr(1).match(reg);
        if (r != null) return decodeURI(r[2]);
        return null;
    };
    

    相关文章

      网友评论

          本文标题:网址获取某一参数

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