search

Home  >  Q&A  >  body text

<meta http-equiv="Content-Type" content="text/html;这段常用代码是什么意思呢?

<meta http-equiv="Content-Type" content="text/html;这段常用代码是什么意思呢?

phpcn_u233phpcn_u2332898 days ago1440

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:11:49

    <meta http-equiv="Content-Type" content="text/html;What does this commonly used code mean? -PHP Chinese website Q&A-<meta http-equiv="Content-Type" content=" text/html;What does this commonly used code mean? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 阿神

    阿神2016-12-20 15:28:03

    这段代码是写入在head标签里的,这些写出来并不会在浏览器上表现出来,而是给浏览器看的,浏览器解析的时候就会知道。

    content-type的意思是内容类型。content是内容,type是类型。那后面text是文本,html是网页文件。

    整个代码的意思大概是:meta http-equiv(浏览器接下来我要告诉你)=“content-type”(我的这些代码是什么内容类型)content=“text/html";(那就是它们都是文本方式的网页文件)

    reply
    0
  • Cancelreply