获取url参数值
Posted double405
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取url参数值相关的知识,希望对你有一定的参考价值。
获取url参数值,记录一下方便以后用到
// 获取url参数 const getUrlKey = name => return decodeURIComponent((new RegExp(‘[?|&]‘ + name + ‘=‘ + ‘([^&;]+?)(&|#|;|$)‘).exec(location.href) || [, ""])[1].replace(/\+/g, ‘%20‘)) || null ;
以上是关于获取url参数值的主要内容,如果未能解决你的问题,请参考以下文章