同问,不过9-1节中提到,li是属性结点,为什么nodeValue输出为null而不是属性的值呢
<li>是元素节点 ,标签由英文尖括号<和>括起来
<
>
li是文本节点吧
1. 元素节点的 nodeValue 是 undefined 或 null2. 文本节点的 nodeValue 是文本自身3. 属性节点的 nodeValue 是属性的值
li是一个元素节点,所以它的nodeValue是null 或undefined.