用户 cp1252 作为 IE 中的 Javascript 字符集
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CP1252 可能是 Gecko/Firefox 提供的映射到 Windows-1252 的别名。 Internet Explorer 支持1 Windows-1252 作为一个值,Gecko 也是如此。因此,
应该有效。
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,
should work.
1This list appears to not have been updated since Internet Explorer 5. I couldn't find a newer list.