我想从 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 内容中显示这些图像。