DOM元对象用于表示HTML <meta>元素。 Meta元素由getElementById()访问。
属性:
- Name attribute:此属性用于定义属性的名称。
- http-equiv属性:此属性用于获取http响应消息头。
- 方案属性:此属性用于指定用于解释属性值的方案。
- Content attribute:此属性用于指定属性值。
用法:
document.getElementById("ID");
其中“id”是分配给“meta”标签的ID。
示例1:
<!DOCTYPE html>
<html>
<head>
<meta name="keywords"
content="Meta Tags, Metadata" />
</head>
<body>
<center>
<h1>GeeksForGeeks</h1>
<h2>DOM Meta Object</h2>
<p>Hello GeeksforGeeks!</p>
<button onclick="myGeeks()">
Submit</button>
<p id="sudo"></p>
<script>
function myGeeks() {
var x =
document.getElementsByTagName(
"META")[0].content;
document.getElementById(
"sudo").innerHTML = x;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例-2:可以使用document.createElement方法创建元对象。
<!DOCTYPE html>
<html>
<head>
<title>DOM Meta Object </title>
</head>
<body>
<center>
<h1>GeeksForGeeks</h1>
<h2>DOM Meta Object</h2>
<p>Hello GeeksforGeeks!</p>
<button onclick="myGeeks()">
Submit</button>
<p id="sudo"></p>
<script>
function myGeeks() {
// meta tag created
var g = document.createElement("META");
g.setAttribute("name", "keywords");
g.setAttribute("content",
"Meta Tags, Meta data");
document.head.appendChild(g);
document.getElementById("sudo").innerHTML =
"HTML DOM Meta Object created.";
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM Meta Object支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Meta content用法及代码示例
- HTML Meta name用法及代码示例
- HTML Meta httpEquiv用法及代码示例
- HTML <Meta>用法及代码示例
- HTML <meta> charset属性用法及代码示例
- HTML <meta> content属性用法及代码示例
- HTML <meta> scheme属性用法及代码示例
- HTML <meta> name属性用法及代码示例
- HTML DOM Object用法及代码示例
- HTML DOM HTML用法及代码示例
- HTML DOM Input Week用法及代码示例
- HTML DOM Column用法及代码示例
- HTML DOM Del用法及代码示例
- HTML DOM Embed用法及代码示例
- HTML DOM Header用法及代码示例
- HTML DOM Footer用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Meta Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。