我有一个目前不在Chrome控制台上执行的JS代码。我尝试以不同的方式缩进代码。
document.body.addEventListener('click', function () {
var myParent = document.getElementById("Banner");
var myImage = document.createElement("img");
myImage.src = 'https://thecatapi.com/api/images/get?format=src&type=gif';
myParent.appendChild(myImage);
myImage.style.marginLeft = "160px";
});