我知道有很多方法可以从DOM树中选择一个元素,但是我试图遍历子元素'按钮#vertingher-default'来自父元素(即div#container)使用伪类。它没有用,请让我知道它有什么问题。
p[1]
答案 0 :(得分:1)
使用这个:
document.querySelectorAll('div#container button:first-child');
你得到
div#container
里面的所有按钮 他们父母的第一个孩子。
您获得空数组的原因是因为您的按钮不是第一个孩子。您之前有一个<h3>
标记。
答案 1 :(得分:1)
以下作品。 button:nth-of-type
将检查仅按钮类型的元素
document.querySelectorAll('div#container button:nth-of-type(1)');
答案 2 :(得分:0)
您可以在querySelector
button
上使用document.getElementById('container').querySelector('button')
来获取div中第一个ID为container
的按钮。
var child = document.getElementById('container').querySelector('button');
console.log(child);
&#13;
<div id="container">
<div id="switcher" class="switcher">
<h3>Style Switcher</h3>
<button id="switcher-default">
Default
</button>
<button id="switcher-narrow">
Narrow Column
</button>
<button id="switcher-large">
Large Print
</button>
</div>
</div>
&#13;
您也可以使用querySelectorAll()
,但在这种情况下,您需要按[0]
获取第一个按钮:
var firstChild = document.getElementById('container').querySelectorAll('button')[0];
console.log(firstChild);
&#13;
<!-- begin snippet: js hide: false console: true babel: false -->
<div id="container">
<div id="switcher" class="switcher">
<h3>Style Switcher</h3>
<button id="switcher-default">
Default
</button>
<button id="switcher-narrow">
Narrow Column
</button>
<button id="switcher-large">
Large Print
</button>
</div>
</div>
&#13;