javascript的Comment、CDATASection、DocumentType、DocumentFragment、Attr类型
Comment类型
- nodeType为8,nodeName为#comment,nodeValue为注释内容;
- Comment类型拥有除splitText()之外的所有的属性和方法;
- 创建注释节点只需要传入注释内容即可
document.createComment('Hi');
一般浏览器不会识别位于
mannuan
Rome was not built in a day.
document.createComment('Hi');
一般浏览器不会识别位于