<meta charset =“”utf-8“”/>或<meta http-equiv =“”Content-Type“”/>,我应该使用哪个?

时间:2017-07-05 11:06:46

标签: html5 character-encoding meta-tags

为了定义HTML 5 doctype的字符集,我应该使用哪种表示法?

  1. 短:

    meta charset="utf-8" 
    
  2. 长:

    meta http-equiv="Content-Type" content="text/html; charset=utf-8" 
    

1 个答案:

答案 0 :(得分:0)

请参阅HTML 5.1规范中的Specifying the document’s character encoding部分:

  

[...]在encoding declaration state中使用带有meta属性的charset元素或带有meta属性的http-equiv元素。

所以两种方式都很好。 (但不要在同一文档中使用它们。)