URL 中的重音符号,如何正确转义它们 ?
我必须获取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 encodeURIComponent 和 decodeURIComponent。 转义 和 unescape 仅对 ASCII 字符集有用,而前者支持 unicode 字符集。
use encodeURIComponent and decodeURIComponent. escape and unescape will be useful only for ASCII charset, while the former supports unicode charsets.