美文网首页
获取url上的参数

获取url上的参数

作者: 变量只提升声明不提升赋值 | 来源:发表于2021-09-29 14:03 被阅读0次
    const getParameters = (URL) => {
      URL = JSON.parse(
        '{"' +
          decodeURI(URL.split("?")[1])
            .replace(/"/g, '\\"')
            .replace(/&/g, '","')
            .replace(/=/g, '":"') +
          '"}'
      );
      return JSON.stringify(URL);
    };
     
    getParameters(window.location)
    
    

    相关文章

      网友评论

          本文标题:获取url上的参数

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