无法在Firefox中呈现响应

时间:2016-02-26 05:02:58

标签: html firefox

嗨,我正在尝试在html下面渲染

<html>
<head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body >
    <select id="countrySelect" size="1">
        <option></option>
        <option>USA</option>
        <option>Singapore</option>
    </select>
    <button >show selected</button>
</body>
</html>

但是在浏览器控制台中出现以下错误: 未声明HTML文档的字符编码。如果文档包含US-ASCII范围之外的字符,则文档将在某些浏览器配置中使用乱码文本进行渲染。必须在文档或传输协议中声明页面的字符编码。

1 个答案:

答案 0 :(得分:1)

请尝试以下Html代码

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
       <title>Untitled Document</title>
      </head>
      <body>
        <select id="countrySelect" size="1">
          <option></option>
          <option>USA</option>
          <option>Singapore</option>
        </select>
        <button>show selected</button>
      </body>
 </html>