codecamp

HTML DOM createComment() 方法

HTML DOM createComment() 方法

Document 对象参考手册 Document 对象

实例

可创建注释节点, 并插入HTML文档:

var c=document.createComment("My personal comments");
document.body.appendChild(c);

输出结果:

<!--My personal comments-->

尝试一下 »

定义和用法

createComment() 方法可创建注释节点。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 createComment() 方法


语法

document.createComment(text)

参数

参数类型描述
textString可选. 添加的注释文本。

返回值

类型描述
Comment object创建的注释节点

技术细节

DOM 版本Core Level 1 Document Object


Document 对象参考手册 Document 对象

温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML DOM对象

HTML DOM 引用对象

HTML DOM Password 对象

HTML DOM Link 对象

HTML DOM Select 对象

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }