nodeValue returns null(深刻理解)

nodeValue returns null (deep understanding)

想法是控制台日志节点值。而是将其命名为 returns null。我不明白为什么,因为代码对我来说似乎很好。所以,我想了解发生了什么。我找到了让它工作的方法,但我不明白为什么我的代码不起作用。代码和结果:

HTML

 <div>Users:</div>
  <ul id="myList">
    <li>John</li>
    <li>Doe</li>
  </ul> 

JavaScript

let listNode = document.body.children[1].children[1]

console.log(listNode)

// Why not return node value?
let value = listNode.nodeValue
console.log(value)

结果: link

因为Done在你的li是一个节点,texts也是节点,不仅仅是HTML标签

更新后的代码:

let listNode = document.body.children[1].children[1]

console.log(listNode)

// Why not return node value?
let value = listNode.childNodes[0].nodeValue;
console.log(value)
<div>Users:</div>
  <ul id="myList">
    <li>John</li>
    <li>Doe</li>
  </ul>

当在 JavaScript 中表示 HTML 元素(DOM 对象)时,一切都是节点 - 甚至是元素中的文本。 But, not all nodes are elements. 因此,当您获得对 <li> 的引用时,<li> 不是包含名称的节点,而是子文本<li> 的节点。另一种说法是,元素节点从来没有自己的值,它们的子节点有,这就是为什么当您尝试获取 nodeValue 时得到 null 的原因14=]

要获取该内容,您必须一直导航到该节点:

// Get a node list of all the <li> child elements in the #myList list:
let listNodes = document.querySelectorAll("#myList > li");

// Go to the first <li> in the node list and then navigate the the text node contained within that node
let value = listNodes[0].firstChild.nodeValue;
console.log("The <li>.firstChild node value is: " + value);
console.log("The <li> node type is: " + listNodes[0].nodeType + " (1 = element node)");
console.log("The <li>.firstChild node type is: " + listNodes[0].firstChild.nodeType + " (3 = text node)");
<div>Users:</div>
 <ul id="myList">
    <li>John</li>
    <li>Doe</li>
 </ul>

但是,DOM 还公开了其他方式,可以通过 .textContent and .innerHTML:

直接访问元素中的内容

// Get a node list of all the <li> child elements in the #myList list:
let listNodes = document.querySelectorAll("#myList > li");

// .textContent allows you to extract the text of an element without navigating 
// into its text node
let value = listNodes[1].textContent;
console.log(value);

// While .innerHTML allows you to acces the HTML within an element:
value = listNodes[1].innerHTML;
console.log(value);
<div>Users:</div>
 <ul id="myList">
    <li>John</li>
    <li><a href="">Doe</a></li>
 </ul>