gpt4 book ai didi

javascript - window.location.href.split ('/').pop()返回特殊字符而不是实际值

转载 作者:行者123 更新时间:2023-12-01 14:15:14 25 4
gpt4 key购买 nike

我有以下网址:

gr-dev.indegene.com/el-gr/ο-πόνος/τι-είναι-ο-πόνος;

问题是当我这样做时:
window.location.href.split('/').pop()

我得到了一堆特殊字符,例如:
"%CF%84%CE%B9-%CE%B5%CE%AF%CE%BD%CE%B1%CE%B9-%CE%BF-%CF%80%CF%8C%CE%BD%CE%BF%CF%82;"

我只想获取 τι-είναι-ο-πόνος而不是上面的代码,我该怎么做?

最佳答案

使用下面的代码。

window.decodeURI(window.location.href.split('/').pop());

请引用 decodeURI

 var decodedVal = window.decodeURI("%CF%84%CE%B9-%CE%B5%CE%AF%CE%BD%CE%B1%CE%B9-%CE%BF-%CF%80%CF%8C%CE%BD%CE%BF%CF%82;");

console.log(decodedVal);

关于javascript - window.location.href.split ('/').pop()返回特殊字符而不是实际值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47629777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com