首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    javascript当中如何用children和firstElementChild做遍历

    如何用children和firstElementChild做遍历 例 1.4 <HTML> <head>     <meta http-equiv="content-type" content="text/html; charset=utf-8"/> </HEAD> <BODY>

    <script> var ps = document.getElementById("contain") if(ps.children) { var oFirst= ps.firstElementChild;    oFirsta = ps.children[0];//children是一种很好的兼容写法 alert(oFirst===oFirsta); var oLast = ps.lastElementChild; oLasta = ps.children[ps.children.length-1]; alert(oLast===oLasta); var oNext = oFirst.nextElementSibling;                                   var oPre = oNext.previousElementSibling;     alert(oFirst.firstChild.nodeValue);     alert(oLast.firstChild.nodeValue);     alert(oNext.firstChild.nodeValue);     alert(oPre.firstChild.nodeValue); } </script> </BODY> </HTML>

    02
    领券