例
返回的值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";
試一試» 元對象