从js返回ping到html时获取[object HTMLImageElement]

这是使用API​​的天气应用。另外img.src返回有效的png文件,但是如何将其插入HTML页面?现在在html div部分显示[object HTMLImageElement]。

              var img = new Image();
                  var iconcode = data.weather[0].icon;
                 img.src = `https://openweathermap.org/img/w/` + iconcode + `.png`;

                 console.log(img);
                temperatuneIcon.innerHTML=img;
                console.log(img,iconcode);