2021-10-04 09:31:51 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2 class="example">A heading with class="example"</h2>
|
|
|
|
<p class="example">A paragraph with class="example".</p>
|
|
|
|
|
|
|
|
<p>Click the button to add a background color all elements with class="example".</p>
|
|
|
|
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
2021-10-14 08:09:56 -04:00
|
|
|
<button onclick="myFunction2()">Empty list</button>
|
2021-10-04 09:31:51 -04:00
|
|
|
|
|
|
|
<p><strong>Note:</strong> The querySelectorAll() method is not supported in Internet Explorer 8 and earlier versions.</p>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function myFunction() {
|
|
|
|
var x, i;
|
|
|
|
x = document.querySelectorAll(".example");
|
|
|
|
for (i = 0; i < x.length; i++) {
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(i + ' ' + x[i].outerHTML);
|
2021-10-04 09:31:51 -04:00
|
|
|
}
|
|
|
|
}
|
2021-10-14 08:09:56 -04:00
|
|
|
|
|
|
|
function myFunction2() {
|
|
|
|
x = document.querySelectorAll(".example6");
|
2021-11-10 12:05:35 -05:00
|
|
|
window.alert(x.length);
|
2021-10-14 08:09:56 -04:00
|
|
|
}
|
|
|
|
|
2021-10-04 09:31:51 -04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|