これを行うべきかどうかはわかりません。
これが私の問題です:
10個のdiv要素(一意のIDを持つ)を作成して保存する関数を作成しました。
配列をパラメーターとして受け取り、5番目のdiv(または特定のdiv要素)のIDを警告する別の関数を作成したいと思います。
助けてください
function createText(){
var combo = [];
for( i =0; i<=5 ; i++) {
var newText = document.createElement("input");
newText.type = "text";
newText.id = "text"+i;
newText.style.width ="20px";
newText.style.height ="20px";
var newDiv = document.createElement("div");
newDiv.type = "div";
newDiv.id = "div"+i;
newDiv.style.backgroundColor ="red";
newDiv.style.cssFloat = "left";
document.getElementById("tryingin").appendChild(newDiv.cloneNode());
combo.push(document.getElementById("div"+i).appendChild(newText.cloneNode()));
}
alert(combo);
}
function alert(arr) {
//now I want to alert the id of the div(or textbox) here
}