Firefox 15.0忽略了meta charset =“utf-8”

时间:2012-09-05 09:34:31

标签: html5 firefox

我有这个简单的HTML

<!Doctype html>
<head>
<title>Uft-8</title>
<meta charset="uft-8">
<style type="text/css">
.tr_deco{
background-color:pink;
border:1px solid red;
}
</style>
</head>
<body>
<a class="new_krud_slider" href="">make new</a>
</body>
</html>

当我在firefox 15上试用代码时,我得到了这个firebug错误。

  

为HTML文档声明了不受支持的字符编码   使用元标记。声明被忽略了。

我的firebug版本是1.7.3。可能导致此错误的原因是什么?。

1 个答案:

答案 0 :(得分:5)

Mate,你错误输入了charset="uft-8"(在T之前的F)。将其更改为charset="utf-8"

<!Doctype html>
<head>
<title>Uft-8</title>
<meta charset="utf-8">
<style type="text/css">
.tr_deco{
background-color:pink;
border:1px solid red;
}
</style>
</head>
<body>
<a class="new_krud_slider" href="">make new</a>
</body>
</html>

然后它工作正常。我知道,我自己测试了它。

编辑:现在我意识到你到处输入了UFT。正确的初始值是UTFUCS Transformation Format)。