DOM子节点使用Parent输出相同的内容

时间:2016-03-17 20:53:00

标签: javascript html dom

为什么这些代码会产生相同的控制台输出。

html输出: 游泳

自行车

运行

第一个不应该输出p标签文本内容。

1

var sports = document.getElementById('sports');
console.log(sports);

2

<section id="sports">
        <p class="swim">Swim</p>
        <p id="bike">Bike</p>
        <p>Run</p>
    </section

html摘录:

slbuild(gcs);
% generate additional.c file using files created by slbuild()
% ...
% now attempt to add additional.c to the build process as custom code
configs = getActiveConfigSet(gcs);
configs.set_param('CustomSource', 'additional.c');
% now rebuild
slbuild(gcs)

1 个答案:

答案 0 :(得分:0)

它们不会产生@Observer

建议的相同结果

“childNodes属性返回节点子节点的集合,作为NodeList对象。”