HTML DOM中的Samp对象用于表示<samp>元素。可以使用getElementById()方法访问<samp>元素。
用法:
document.getElementById("ID");
ID分配给<samp>标签的位置。
范例1:
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM samp Object
</title>
</head>
<body>
<h1>
GeeksforGeeks
</h1>
<h2>
HTML DOM Samp Object
</h2>
<samp id = "geeks">
A computer science portal for Geeks
</samp>
<br><br>
<button onclick = "myGeeks()">
Submit
</button>
<script>
function myGeeks() {
var txt = document.getElementById("geeks");
txt.style.color = "green";
txt.style.fontSize = "16px";
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
范例2:可以使用document.createElement方法创建样本对象。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM samp Object
</title>
</head>
<body>
<h1>GeeksForGeeks</h1>
<h2>DOM Samp Object</h2>
<button onclick = "myGeeks()">
Submit
</button><br>
<script>
function myGeeks() {
var cont = document.createElement("SAMP");
var txt = document.createTextNode(
"A Computer SciencePortalForgeeks");
cont.appendChild(txt);
document.body.appendChild(cont);
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM Samp Object支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML <samp>用法及代码示例
- 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用法及代码示例
- HTML DOM Span用法及代码示例
- HTML DOM HR用法及代码示例
- HTML DOM button用法及代码示例
- HTML DOM Blockquote用法及代码示例
- HTML DOM BR用法及代码示例
- HTML DOM Meta用法及代码示例
- HTML Object name用法及代码示例
- HTML DOM Abbreviation用法及代码示例
- HTML DOM Aside用法及代码示例
- HTML DOM Bold用法及代码示例
- HTML DOM Bdo用法及代码示例
- HTML DOM Caption用法及代码示例
- HTML DOM Cite用法及代码示例
- HTML DOM Canvas用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Samp Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。