我有一个 ID 为“orangeButton”的 div,每次单击它都会创建一个新的 div。这很好用,但是......我希望每个新创建的 div 都有一个递增的数字添加到它的 ID。
我不知道该怎么做。
这是迄今为止我的评论代码的小提琴。
http://jsfiddle.net/taoist/yPrab/1/
谢谢
Javascript代码
var applicationArea = document.getElementById("applicationArea");
var orangeButton = document.getElementById("orangeButton");
orangeButton.onclick = function() {
var newDivThingy = document.createElement("div");
newDivThingy.id = 'newDivThingy'; // I want each newly created div to have a numeric value concatenated to it's ID. IE newDivThingy1 newDivThingy2 newDivThingy3
applicationArea.appendChild(newDivThingy);
};