0

我正在创建这个函数,它将向 div 添加图像,稍后我将编写代码以删除所述 div 中的信息。我在这部分代码中不断收到 DOM Exception 8 错误。任何帮助,将不胜感激。

addDelete:function(imagename,idname) {
    var img = document.createElement("img");
    img.setAttribute("src", 'http://cpms.byu.edu/sites/all/themes/collage/src_submit/images/cross.png');
    img.setAttribute("id", imagename);
    document.getElementById(idname).appendChild("img");
}
4

1 回答 1

1
document.getElementById(idname).appendChild("img");
                                            ^   ^

您传入的是字符串"img",而不是变量img

document.getElementById(idname).appendChild(img);
于 2013-04-30T21:39:54.290 回答