getElementById("id")的childNodes和children

Posted seeyagain

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了getElementById("id")的childNodes和children相关的知识,希望对你有一定的参考价值。

getElementById("id")获取的元素在使用时:1)使用children;2)使用childNodes。

1) 在使用children时,获取到的元素只是标签中的元素

2)在使用childNodes时,如果ID元素的前后包含换行、空格等,这些特殊的符号也会占用一个childNodes[i];

 

<div id="progrestable" >
<p>Click on the header to alert its value</p>
</div>

<script type="text/javascript">
$(function(){
var x=document.getElementById("progrestable");
console.log(x.childNodes.length); //输出3,
console.log(x.children.length); //输出1,只包含元素p的内容
});
</script>

 











以上是关于getElementById("id")的childNodes和children的主要内容,如果未能解决你的问题,请参考以下文章

$("#id")&&document.getElementById("id")

window.document.getElementById("ID").onclick=function() 无效,求解答

使用 document.getElementById("id").innerHTML 时如何更改文本颜色

document.getElementById(“id”)与$("#id")的区别

jquery中的$("#id")与document.getElementById("id")的区别

jquery中的$("#id")与document.getElementById("id")的区别