createComment()方法用于创建带有某些指定文本的注释节点。此属性用于将文本值设置为字符串类型的参数。
用法:
document.createComment( text )
参数:该方法接受可选的单个参数文本。此参数用于保存注释字符串。
Example:
<!DOCTYPE html>
<html>
<head>
<title>DOM createComment() Method</title>
<style>
h1, h2 {
color:green;
font-weight:bold;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksForGeeks</h1>
<h2>DOM createComment() Method</h2>
<button onclick="geeks()">Submit</button>
<p id="sudo"></p>
<script>
function geeks() {
var c = document.createComment("GFG comments");
document.body.appendChild(c);
var x = document.getElementById("sudo");
x.innerHTML = "Comments are Invisible!";
}
</script>
</body>
</html>
输出:
支持的浏览器:下面列出了DOM createComment() Method属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- PHP DOMDocument createComment()用法及代码示例
- HTML DOM contains()用法及代码示例
- HTML DOM createElement()用法及代码示例
- HTML DOM adoptNode()用法及代码示例
- HTML DOM addEventListener()用法及代码示例
- HTML DOM Storage key()用法及代码示例
- HTML DOM appendChild()用法及代码示例
- HTML DOM getElementsByTagName()用法及代码示例
- HTML DOM requestFullscreen()用法及代码示例
- HTML DOM normalize()用法及代码示例
- HTML DOM close()用法及代码示例
- HTML DOM getElementById()用法及代码示例
- HTML canvas arc()用法及代码示例
- HTML DOM getNamedItem()用法及代码示例
- HTML DOM getElementsByClassName()用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM createComment() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。