You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
398 B
15 lines
398 B
3 years ago
|
/**
|
||
|
* 判断是否是微信
|
||
|
*/
|
||
|
export function isWechat() {
|
||
|
return String(navigator.userAgent.toLowerCase().match(/MicroMessenger/i)) === "micromessenger";
|
||
|
}
|
||
|
/**
|
||
|
* 提取code
|
||
|
* @param {string} name
|
||
|
*/
|
||
|
export function getUrlCode(name) {
|
||
|
return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ''])[1]
|
||
|
.replace(/\+/g, '%20')) || null
|
||
|
},
|