childnodes的问题,为什么输出结果为undefined

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <h1 id="h1">
    明天休息
    </h1>

    
    
</body>

    <script>
    
     var C = document.getElementById("h1").childNodes;
    
     alert(C.nodeValue);
    </script>
</html>

慕粉3541299
浏览 2442回答 1
1回答

慕粉3541299

已经找到问题关键,childnodes返回值为数组,所以C是一组数组,alert(C[0].nodeValue)即可得到结果
打开App,查看更多内容
随时随地看视频慕课网APP