js Jquery得不到元素的子节点

为什么得不到id为head标签的子标签th?
下面代码直接复制可运行。
求解

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <script >
        function println(){
            let Nodes=$("#head").childNodes;
            console.log(Nodes);
        }
    </script>
    <title>Title</title>
</head>

<body>
<table>
    <thead>
    <tr id="head">
        <th>
            <input  type="checkbox"/>
        </th>
        <th>name</th>
        <th>author</th>
        <th>store</th>
        <th>money</th>
        <th>date</th>
    </tr>
    </thead>
    <tbody id="tbody">

    </tbody>
</table>
<button onclick="println()">打印</button>
</body>
</html>

$("#hwad").children("th")

$("#head").find("th")
children和find的区别:children只会查找直接子集,而find会跨越层级查找,一直找到没有为止

用find

let Nodes=$("#head").find('th');
console.log(Nodes);

单个 $("#head").children("th")

多个参考楼上