var c=document.getElementsByTagName("li"); for(var i=0;i<c.length;i++){ var a=c[i].nodeName; var b=c[i].nodeValue; var d=c[i].nodeType; // document.write(a+"<br>"+b+"<br>"+d+"<br>"); document.write(a+"<br>"); document.write(b+"<br>"); document.write(c+"<br>"); }输出结果:LInull[object HTMLCollection]LInull[object HTMLCollection]LInull[object HTMLCollection]
添加回答
举报
0/150
提交
取消