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);
};