<ul>
<li>one</li>
<li>Two</li>
<li>Three</li>
</ul>
const li_second=document.querySelector('li:two').style.backgroundColor="red";
我已经尝试过上面的代码行
您的选择器有误。您应该使用
li:two
来选择第二个 li:nth-child(2)
元素,而不是使用
<li>
const li_second = document.querySelector('li:nth-child(2)');
li_second.style.backgroundColor = 'red';