Created
March 5, 2017 19:54
-
-
Save Dosant/6a6bcc262ac74e5993667ccfb5bbd4d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li>Этот</li> | |
<li>тест</li> | |
</ul> | |
<ul> | |
<li>полностью</li> | |
<li>пройден</li> | |
</ul> | |
<script> | |
var elements = document.querySelectorAll('ul > li:last-child'); | |
for (var i = 0; i < elements.length; i++) { | |
alert( elements[i].innerHTML ); // "тест", "пройден" | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment