1
2
3
4
5
6
| // 以下代码在 Chrome 中正常,但在 Safari 中会报错
"https://linlccc.com?theme=light".replace(/(?<=[?|&]theme=)\w+/, "dark");
// 解决方案,使用捕捉组+替换字符串的方式
"https://linlccc.com?theme=light".replace(/([?|&]theme=)\w+/, "$1dark");
// 以上两个执行结果都是 "https://linlccc.com?theme=dark"
|