xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>高手教程(study.p2hp.com)</title>
</head>
<body>
<h1>一个 H1 元素</h1>
<h2>一个 H2 元素</h2>
<div>一个 DIV 元素</div>
<p>一个 p 元素</p>
<p>一个 p 元素,包含了 <span style="color:brown;">span</span> 元素了。 </p>
<p>点击按钮设置使用 h2, div 和 span 元素的背景颜色。</p>
<button onclick="myFunction()">点我</button>
<p><strong>注意:</strong>Internet Explorer 8 及更早版本不支持 querySelectorAll() 方法。</p>
<script>
function myFunction() {
var x = document.querySelectorAll("h2, div, span");
var i;
for (i = 0; i < x.length; i++) {
x[i].style.backgroundColor = "red";
}
}
</script>
</body>
</html>