gpt4 book ai didi

javascript - jquery/Javascript中浏览图片时如何获取本 map 片路径

转载 作者:行者123 更新时间:2023-12-03 08:56:08 26 4
gpt4 key购买 nike

在上传到特定文件夹之前,是否可以从 jquery 中选择的位置获取图像路径。

最佳答案

尝试利用 change 事件,URL.createObjectURL 并以 this.files[0] 作为参数

$("input[type=file]").on("change", function() {
$("[for=file]").html(this.files[0].name);
$("#preview").attr("src", URL.createObjectURL(this.files[0]));
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js">
</script>
<input id="file" type="file" accepts="image/*" /><br />
<label for="file"></label><br />
<img id="preview" />

关于javascript - jquery/Javascript中浏览图片时如何获取本 map 片路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32493158/

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