美文网首页
获取url中的参数键值对

获取url中的参数键值对

作者: kelly_0416 | 来源:发表于2021-03-24 10:18 被阅读0次

    通过replace方法获取url中的参数键值对,可以快速解析get参数。

    const q = {};
    
    location.search.replace(/([^?&=]+)=([^&]+)/g,(_,k,v)=>q[k]=v);
    
    console.log(q);
    

    相关文章

      网友评论

          本文标题:获取url中的参数键值对

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