HTML DOM to change the value of the image's src attribute js code example
Example 1: javascript set image src
var image = document.createElement("img");
var imageParent = document.getElementById("body");
image.id = "id";
image.className = "class";
image.src = searchPic.src;
imageParent.appendChild(image);
document["#pic1"].src = searchPic.src;
document.getElementById("pic1").src= searchPic.src;
$("#pic1").attr("src", searchPic.src);
Example 2: how to edit image tags in javascript
<a href='#' onclick='edit()'><img src="../template/edit.png" id="edit-save"/></a>