JavaScript 参考手册
HTML DOM querySelector() 方法
以下实例演示了多个选择器的使用方法。
源代码:
点击运行 »
<h2> h2 元素</h2> <h3> h3 元素</h3> <script> document.querySelector("h2, h3").style.backgroundColor = "red"; </script>
运行结果:
点击运行 »