gpt4 book ai didi

Javascript - 所选图像未显示

转载 作者:行者123 更新时间:2023-11-30 23:54:25 25 4
gpt4 key购买 nike

在我的 JS 文件中,我检查用户何时选择文件,并在浏览器中显示该图像。然后,我允许用户删除所选图像,而是在浏览器中显示默认图像的图像。

我遇到的问题是,一旦用户通过单击删除文本删除图像,他们就无法选择他们想要的文件。这是出乎意料的。

HTML:

// Label for file input (file input is generated in backend)
<label id="complete-signup-photo-label" for="complete_signup_photo">Choose a profile photo</label>

// Image displayed in browser(should display image user selects from file input above)
<img id="complete-signup-photo-img" width="40px" height="40px" src="{% static 'default-profile.png' %}" alt="">
// User should be able to click, and src of selected file changes to a default image
<span id="complete-signup-remove-photo">Remove</span>

我的JS文件:

img = $("#complete-signup-photo-img");

// This is my file inputs id (generated in my backend)
$("#complete_signup_photo").change(function(e) {
var url = URL.createObjectURL(e.target.files[0]);

img.attr('src', url);
});

$("#complete-signup-remove-photo").click(function(e) {
img.attr("src", "http://localhost:8000/static/default-profile.png");
});

有人知道为什么会发生这种情况吗?谢谢。

最佳答案

您是否尝试初始化文件输入?

$("#complete-signup-remove-photo").click(function(e) {
img.attr("src", "http://localhost:8000/static/default-profile.png");
$("#complete_signup_photo").val("");
});

关于Javascript - 所选图像未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61163078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com