最新的Web开发教程
 

元内容属性

元对象参考 元对象

返回的值content所有meta元素的属性:

var x = document.getElementsByTagName("META");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
    txt = txt + "Content of "+(i+1)+". meta tag: "+x[i].content+"<br>";
}

TXT的结果将是:

Content of 1. meta tag: Free Web tutorials
Content of 2. meta tag: HTML5,CSS,JavaScript
Content of 3. meta tag: John Doe
试一试»

定义和用法

内容属性设置或返回的值content meta元素的属性。

content属性指定的元信息的内容。

注:此属性的可用值依赖于价值名称httpEquiv属性。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

内容属性在所有主流浏览器的支持。


句法

申报表的内容属性:

metaObject .content

设置内容属性:

metaObject .content=text

Value Description
text The content of the meta information

返回值

Type Description
String The value of the content attribute of the meta element

更多示例

改变的价值content在头第三meta元素(索引2)的属性:

document.getElementsByTagName("META")[2].content = "Bill Mosley";
试一试»

元对象参考 元对象