我不知道是否应该这样做。
这是我的问题:
我创建了一个创建和存储 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
}