我想从div中的表行显示所选图像。我正在使用for循环填充表格,但现在我发现很难在div中显示所选图像,因为id是动态的。这是我的for循环
for (i=1; i < my_image.length-1; i++) {
if (i%3==0) {
str += "<td><a
href='"+my_image[i]+"'onclick='displayimg()'id=/image"+my_image[i] +"/"+" class='popup-
open'><img src='"+my_image[i]+"'"+
"width='80' height='65'></a></td></tr><tr>";
}
else {
str+= "<td><a href='"+my_image[i]+"'class='popup-open'><img src='
"+my_image[i]+
"' width='80' height='65'></a></td>";
}
}
如何在用户点击的div内容中显示这些图像。