Igor710,
если нужен массив то массив и сделайте
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Первый сайт</title>
<style>
.b{
height:100px;
width:100px;
background:grey;
float:left;
margin-right:2px;
}
.a{
height:100px;
width:100px;
background:black;
float:left;
margin-right:2px;
}
.hide{
display: none;
}
</style>
</head>
<body>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="a"></div>
<div class="b" ></div>
<div id="output"></div>
<script>
window.onload = function(){
var black = document.querySelectorAll('.a');
var grey = document.querySelector('.b');
var i = 0;
var t = [];
for(;i<black.length-1;i++){
t[i] = grey.cloneNode(true);
document.body.insertBefore(t[i],grey);
console.log(t[i]);
}
t[i] = grey;
t[0].classList.add('hide');
}
</script>
</body>
</html>
|