在前端 Javascript 代码中,我需要从位置哈希参数中提取一个值。例如,网址如下所示:
https://mywebsite.com/certainpage#comment-12345
在这里,我想提取12345表示评论 ID 的值。目前,我正在使用以下代码来执行此操作:
const match = window.location.hash.match(/-([0-9]*)/) || [];
if (!match[1]) return;
// Use match[1]
如果有任何优化且干净的方法来处理此问题,请告诉我。
MM们
相关分类