如何在JavaScript中复制div

时间:2013-10-20 19:51:51

标签: javascript html css

我想知道如何通过JavaScript复制DIV元素几次而不在我的HTML代码中复制DIV?

1 个答案:

答案 0 :(得分:25)

让我们假设您选择了div,例如:

var myDiv = document.getElementById("myDivId");

DOM API包含cloneNode方法,您可以使用

var divClone = myDiv.cloneNode(true); // the true is for deep cloning

现在您可以将其添加到文档

document.body.appendChild(divClone);

这是short self contained code example illustrating this