Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试显示带有重音符号的警报和确认框,但是当我运行应用程序时,我得到的是错误字符,我检查了文件编码,它是 UTF-8,在 index.html 中我设置了 utf-8字符集。
有人有什么想法吗?谢谢。
您不能在警报或确认中使用特殊字符,因为它们不直接使用特殊字符,而是可以在 JavaScript 字符串文字中使用 \u 转义序列来显示这些字符。
alert("\u00e6\u00f8\u00e5")
得到这样的输出æøå
æøå
你可以在这里找到你想要的字符的 utf-8 等价物