Please enable JavaScript.
Coggle requires JavaScript to display documents.
DOM (节点层次 (Node类型 (12个数值常量 (ELEMENT_NODE(1), ATTRIBUTE_NODE(2), TEXT…
DOM
节点层次
-
Node类型
-
-
-
节点关系
每个节点都有childNodes,childNodes保存NodeList对象
-
-
-
-
-
操作节点
-
insertBefore(newNode,location):在location前插入
-
-
-
Document类型
-
-
-
特殊集合
document.applets,所有<applet>元素,不建议使用
-
-
-
-
DOM一致性检测
document.implementation.hasFeature(function,version)
-
文档写入
write(),</script>要加入转义字符\
-
-
-
-
-
-