mirror of
https://github.com/rkd77/elinks.git
synced 2025-04-18 00:47:36 -04:00
[test] testcase for querySelectorAll
This commit is contained in:
parent
1618038dc3
commit
cafabeffa8
25
test/ecmascript/querySelectorAll.html
Normal file
25
test/ecmascript/querySelectorAll.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<!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>
|
||||||
|
|
||||||
|
<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++) {
|
||||||
|
alert(i + ' ' + x[i].outerHTML);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
x
Reference in New Issue
Block a user