浏览器显示德语字符问题

时间:2016-04-15 08:24:35

标签: jquery html character-encoding meta-tags

我的问题是我正在显示德语字符,我的浏览器会在问号符号中转换一些字符。 enter image description here

我在此处添加了图片,您可以看到确切的问题。

我也尝试了元标记

我仍然遇到同样的问题。请帮助纠正代码

我的代码

<meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta name="description" content="">
        <meta http-equiv="Content-Language" content="de, fr, it, en">
        <meta name="author" content="">

2 个答案:

答案 0 :(得分:0)

所以有几种可能性:

也许(如果您在Web服务器上工作)配置错误。搜索有关ISO 8859-1

的设置

它也可能是您浏览器的配置。检查this topic on stackoverflow。它描述了如何强制浏览器使用.htaccess来使用UTF-8。

如果这一切都不起作用,您可以通过搜索和替换将每个字符更改为html代码。这应该没有UTF-8。

  • Ä= &Auml;
  • ä= &auml;
  • Ö= &Ouml;
  • ö= &ouml;
  • Ü= &Uuml;
  • ü= &uuml;

我希望你找到解决方案。

答案 1 :(得分:0)

您好我自己找到答案

数据来自db使用php服务器端脚本,这就是为什么html元标记无效但我们可以使用php标头来做。请在下面查看一行代码。

标题(&#39;内容类型:text / html; charset = ISO-8859-1&#39;);