用户 cp1252 作为 IE 中的 Javascript 字符集

发布于 2024-09-25 19:44:30 字数 228 浏览 2 评论 0原文

我有一个 HTML 网站,声明并编码为 UTF-8。我的 Javascript 源代码是用 cp1252 编码的。

所以我用它来设置编码

<script src="my_cp1252_encoded_file.js" charset="cp1252" ></script>

这在 Mozilla 中有效,但在 IE 中无效。有想法吗?

I am having a HTML site declared and encoded as UTF-8. My Javascript sources are encoded with cp1252.

So i use this to set the encoding

<script src="my_cp1252_encoded_file.js" charset="cp1252" ></script>

This works in Mozilla but not in IE. Ideas?

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

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

发布评论

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

评论(1

天赋异禀 2024-10-02 19:44:30

CP1252 可能是 Gecko/Firefox 提供的映射到 Windows-1252 的别名。 Internet Explorer 支持1 Windows-1252 作为一个值,Gecko 也是如此。因此,

<script src="my_cp1252_encoded_file.js" charset="Windows-1252"></script>

应该有效。

1此列表似乎自 Internet Explorer 5 以来就没有更新过。我找不到更新的列表。

CP1252 is likely to be an alias provided by Gecko/Firefox that maps to Windows-1252. Internet Explorer supports1 Windows-1252 as a value and so does Gecko. Therefore,

<script src="my_cp1252_encoded_file.js" charset="Windows-1252"></script>

should work.

1This list appears to not have been updated since Internet Explorer 5. I couldn't find a newer list.

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