我制作了一个将图像作为输入的按钮,但我找不到显示图片的方法。我试图制作一个空元素,然后像我在其他网站上看到的那样更改其 URL,但它没有用。
HTML
<input
id="myImage"
class="photo-upload"
type="file"
accept="image/*, image/jpeg">
<img id="the-picture" width="200" />
JavaScripts
const uploadPictureButton = document.querySelector(".photo-upload");
uploadPictureButton.addEventListener("click", displayPicture);
function displayPicture(event) {
let image = document.getElementById("myImage");
image.src = URL.createObjectURL(event.target.files[0]);
};
红颜莎娜
MMTTMM
月关宝盒
相关分类