Сообщение от Alexander3928
|
мне нужно через for перебрать
|
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script>
document.addEventListener( "DOMContentLoaded" , function() {
for(let {textContent} of document.querySelectorAll(".div11")) alert(textContent);
});
</script>
</head>
<body>
<div class="div11">one</div>
<div class="div11">3</div>
<div class="div11">4</div>
<div class="div11">two</div>
</body>
</html>