img 的父 DIV 是什么?他们网站上的教程并没有真正解释有关此代码的任何内容,所以我想知道它实际上是如何工作的。
var imgData = publisher.getImgData();
var img = document.createElement("img");
img.setAttribute("src", "data:image/png;base64," + imgData);
// Replace with the parent DIV for the img
document.getElementById("containerId").appendChild(img);