HTML:字符集元,看不到挪威语字符

发布于 2024-12-03 22:08:14 字数 393 浏览 2 评论 0原文

我的标题中有这个(这样我可以看到挪威语字符,但它不起作用。

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

我在 Ø Æ Å 上收到奇怪的字母。

这是一个屏幕截图,我不明白为什么它不起作用。

https://i.sstatic.net/qaTKS.jpg

提前谢谢。

I've got this in my header (so i can see the norwegian characters, but it does not work.

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

I get weird letters on Ø Æ Å.

Here's a screenshot, and i can't figure out why it's not working.

https://i.sstatic.net/qaTKS.jpg

Thx in advance.

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

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

发布评论

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

评论(3

爱格式化 2024-12-10 22:08:14

为什么有两个不同的字符集声明?您应该只声​​明一种编码 - 与 HTML 文件中使用的编码相同。如果您以 UTF-8 保存文件,请删除带有 ISO-8859-1 字符集声明的行。

Why do you have two different charset declarations? You should declare only one encoding - the same as is used in the HTML file. If you saved the file in UTF-8, remove the line with the declaration of ISO-8859-1 charset.

后来的我们 2024-12-10 22:08:14

使用代码编辑器转换 html 文档。它可能会有所帮助转换为 utf-8

Convert the html document with you code editor. It may helpconvert to utf-8

彻夜缠绵 2024-12-10 22:08:14

Apache 不尊重 标记,除非您的整体服务器配置没有默认字符集(极不可能)或者您有 .htaccess 文件这会禁用该功能。将其放在 HTML 文件所在的目录中,这些文件具有由内部 标记指定的不同编码:

AddDefaultCharset Off

The <meta> tag is not respected by Apache unless you have an overall server configuration that does not have a default charset (highly unlikely) or you have a .htaccess file that disables that. Put this in the directory where the HTML files are that have varying encodings specified by an internal <meta> tag:

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