获取url上的参数

2021-09-29  本文已影响0人  变量只提升声明不提升赋值
const getParameters = (URL) => {
  URL = JSON.parse(
    '{"' +
      decodeURI(URL.split("?")[1])
        .replace(/"/g, '\\"')
        .replace(/&/g, '","')
        .replace(/=/g, '":"') +
      '"}'
  );
  return JSON.stringify(URL);
};
 
getParameters(window.location)

上一篇 下一篇

猜你喜欢

热点阅读