URL 中的重音符号,如何正确转义它们 ?

发布于 2024-11-16 06:29:31 字数 107 浏览 3 评论 0原文

我必须获取 URL 中 # 字符旁边的内容(在 JavaScript 中)。例如,当有 é 时,我会得到转义字符。我可以 unescape() 它们,但我得到奇怪的字符,例如 à。如何获得正确的字符?

I have to get what is next to the # character in the URL (in javascript). When there's an é, for example, I get escaped characters. I can unescape() them, but I get weird characters such as Ã. How can I get the right characters ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福不弃 2024-11-23 06:29:31

使用 encodeURIComponentdecodeURIComponent转义unescape 仅对 ASCII 字符集有用,而前者支持 unicode 字符集。

use encodeURIComponent and decodeURIComponent. escape and unescape will be useful only for ASCII charset, while the former supports unicode charsets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文