js 截取 https://pay.doc.zoneyuntech.com/grcode/index/k?type=A60M7y7bX4j9Ku4gd2iT5C2SIwFDo87Q type值
时间: 2024-11-22 08:39:04 浏览: 10
ffmpeg常用命令.rar_流媒体/Mpeg4/MP4_TEXT_
在JavaScript中,如果你想截取URL中的某个部分,特别是查询字符串(query string),你可以使用`URLSearchParams`对象或者简单的正则表达式。针对你给出的例子,我们可以解析并获取`type`值:
```javascript
const url = 'https://pay.doc.zoneyuntech.com/grcode/index/k?type=A60M7y7bX4j9Ku4gd2iT5C2SIwFDo87Q';
// 使用URLSearchParams
const searchParams = new URLSearchParams(url.split('?')[1]); // 获取查询字符串
const typeValue = searchParams.get('type'); // 提取'type'键的值
// 或者直接使用正则匹配
const regex = /type=([^&]+)/; // 匹配'type='后面的值
const matchResult = url.match(regex);
if (matchResult) {
typeValue = decodeURIComponent(matchResult[1]);
}
console.log(typeValue); // 输出:A60M7y7bX4j9Ku4gd2iT5C2SIwFDo87Q
阅读全文