My question is:
Is that possible to add the same element without rewriting the same variable.
I am creating a slider, and i need to append a div
with a class slide-el
into block slider
.
Here is a part of code
JavaScript
x
41
41
1
var body, html, sliderBody, btnLeft, btnRight, i, parts, vHeight, vWidth;
2
//Variable definitions
3
var i = 0,
4
parts = 3,
5
6
//Main html elements
7
body = document.body,
8
html = document.element,
9
10
//viewport Height and Width
11
vHeight = window.innerHeight,
12
vWidth = window.innerWidth,
13
14
sliderBody = _id("slider"),
15
btnLeft = _id("btn-left"),
16
btnRight = _id("btn-right"),
17
18
urls = ["http://www.wallpapereast.com/static/images/pier_1080.jpg",
19
"http://www.wallpapereast.com/static/images/pier_1080.jpg",
20
"http://www.wallpapereast.com/static/images/pier_1080.jpg",
21
"http://www.wallpapereast.com/static/images/pier_1080.jpg"];
22
23
slide = _createEl("div");
24
slide.className += "slide-el";
25
26
function _id(el){
27
return document.getElementById(""+ el +"");
28
}
29
function _createEl(el){
30
return document.createElement(""+ el +"");
31
}
32
window.onload = function(){
33
slideLayout();
34
}
35
36
function slideLayout(){
37
for(var i=0; i < urls.length; i++){
38
sliderBody.appendChild(slide);
39
}
40
}
41
The problem is that I can’t append the same element that many times. It just creates one element instead of 4.
For you to understand better I made a fiddle:
https://jsfiddle.net/ud7dvn3z/
Advertisement
Answer
appendChild
will remove the node from wherever it is before appending it to its new location, so you need to make copies of the node instead. You can use cloneNode
for that. The true
makes cloneNode
perform a deep clone, i.e. with all its child nodes.
JavaScript
1
4
1
for(var i = 0; i < urls.length; i++){
2
sliderBody.appendChild(slide.cloneNode(true));
3
}
4