西班牙语特殊字符,例如 á ó显示混乱或垃圾值时

发布于 2024-10-25 16:36:48 字数 232 浏览 0 评论 0原文

我有一条西班牙语验证消息,我正在尝试使用 JavaScript 显示该消息。 所有像上面这样的特殊字符都会变成 & #243;。 只有当我使用 JavaScript 时才会发生这种情况,还有一些西班牙语验证消息,我通过服务器端显示它们,它们很好。

errorString = "<%:Validation.xyz %>";

我正在尝试从资源文件中获取。

有人能想到快速解决办法吗?

I have a Spanish validation message which I'm trying to display using my JavaScript.
And all the special characters like above gets changed into & #243;.
And it is only happening when I'm using JavaScript, there are couple of more validation messages in Spanish which I'm displaying through server side and they are fine.

errorString = "<%:Validation.xyz %>";

I'm trying to get from resource file.

Can some one think of quick work around?

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

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

发布评论

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

评论(2

无戏配角 2024-11-01 16:36:48

你所说的垃圾实际上只是相应字符的 HTML 编码值,它的作用是防止 XSS。发生编码是因为您使用 <%: ,它会自动对字符串进行 HTML 编码,但这对于您的 javascript 来说不应该是问题。示例:

var text = 'hello ó';
document.getElementById('foo').innerHTML = text;

工作正常并在相应的 DOM 元素中显示 hello ó

What you call garbage is actually but the HTML encoded value of the corresponding character and is there to prevent you from XSS. The encoding happens because you are using <%: which automatically HTML encodes the string but this shouldn't be a problem for your javascript. Example:

var text = 'hello ó';
document.getElementById('foo').innerHTML = text;

works just fine and displays hello ó in the corresponding DOM element.

我是有多爱你 2024-11-01 16:36:48

检查您是否使用 UTF-8 编码保存文件(以防万一)。它碰巧进入没有 UTF8 BOM 的 TFS,然后客户端可能会发生混乱。

Check if you saved your file with UTF-8 encoding (just in case). It happens that it goes into TFS without UTF8 BOM and then mess can happen on client side.

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