目录

HTML DOM meta 对象


元对象

Meta 对象表示 HTML <meta> 元素。

访问元对象

您可以使用 getElementsByTagName() 访问 <meta> 元素:

var x = document.getElementsByTagName("META")[0];
亲自试一试 »

创建元对象

您可以使用 document.createElement() 方法创建 <meta> 元素:

示例

var x = document.createElement("META");
亲自试一试 »

元对象属性

Property Description
content Sets or returns the value of the content attribute of a meta element
httpEquiv Sets or returns an HTTP header for the information in the content attribute
name Sets or returns a name for the information in the content attribute
scheme Not supported in HTML5.
Sets or returns how the value of the content attribute should be interpreted

标准属性和事件

Meta 对象也支持标准特性事件


相关页面

HTML 参考:HTML <meta> 标签