在下面的代码中,您将看到我正在尝试为 image.onclick 定义一个带有额外参数的事件处理程序,我在 while 循环中声明了这些参数,希望 javascript 以这种方式定义范围,但事实并非如此。基本上这里所有的事件处理程序都获得了我给变量 id 和 section_id 的最后一个值。关于如何处理我想要动态生成这些处理程序的情况的任何想法?
function handlePicturesResult(){
if (req.readyState == 4) { // Complete
if (req.status == 200) { // OK response
var el = document.getElementById('pictureHolder');
while( el.hasChildNodes() ){
el.removeChild(el.lastChild);
}
var tempObject = JSON.parse(req.responseText);
var pictures = tempObject.images;
var i=0;
while(i<pictures.length){
var picIndex = i;
var image= new Image(120,80);
image.src = 'images/' + pictures[i].url;
image.width = 120;
image.height = 80;
var id = pictures[picIndex].id;
var section_id = pictures[picIndex].sectionId;
image.onclick = function(event){
deleteImage(event,id,section_id);
}
var txtNode = document.createTextNode(pictures[picIndex.valueOf()].id);
el.appendChild(image);
el.appendChild(txtNode);
i++;
}
} else {
alert("Problem: " + req.statusText);
}
}
}