我有这个 JS 部分:
var layer1 = document.getElementById('layer1');
ctx1 = layer1.getContext('2d');
if (cellId == 'layer1x') {
x1 = cellValue;
}
if (cellId == 'layer1y') {
y1 = cellValue;
}
if (cellId == 'layer1z') {}
var item1 = new Image();
item1.src = "images/sheep.png";
item1.addEventListener("load", function () {
ctx1.drawImage(item1, x1, y1)
}, false);
如何删除现有图像以及如何显示具有新坐标的唯一新图像。