9-10关于节点属性能顾直接输出吗?我想知道下面代码的错误之处。
<script type="text/javascript"> var mylist = document.getElementById("tcon"); var hc=mylist.parentNode.parentNode.parentNode.lastChild.childNodes[1].childNodes.nodeValue; document.write(hc); </script>
<script type="text/javascript"> var mylist = document.getElementById("tcon"); var hc=mylist.parentNode.parentNode.parentNode.lastChild.childNodes[1].childNodes.nodeValue; document.write(hc); </script>
2017-10-31
//正确答案: <script type="text/javascript"> var mylist = document.getElementById("tcon"); //myarr是id为lesson4的子节点集合 var myarr=mylist.parentNode.parentNode.parentNode.lastChild.childNodes; document.write(myarr[0].nodeValue+"的课程如下:"+"<br/>"); for(var i=0;i<myarr[1].childNodes.length;i++){ document.write(myarr[1].childNodes[i].childNodes[0].nodeValue+"<br/>"); } </script>
举报