欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

收集的一些小方法

程序员文章站 2022-05-19 18:56:59
...

1,获取url的参数

export const urlParse = (url=location.href) => {
	const reg = /[?&]([^#&?]+)=([^#&\?=]+)/g;
	let obj = {};
	url.replace(reg, (group, catch1, catch2, index, str) => {
		obj[catch1] = catch2;
	});
	return obj;
}
复制代码


转载于:https://juejin.im/post/5b87e2a551882542fd2391a4