例
返回的值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属性指定的元信息的内容。
浏览器支持
内容属性在所有主流浏览器的支持。
句法
申报表的内容属性:
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";
试一试» 元对象