我尝试使用 javascript 生成 img 标签(单击链接时,会创建图像)问题是生成图像时,所有其他对象(其他图像或文本)都被覆盖,我无法再访问它们
我有类似的东西
document.getElementById("picturediv").innerHTML=picturetag;
在 HTML 中
<div id="bigger">
<div id="picturediv"></div>
<div id="div for some other stuff"></div>
</div>