gpt4 book ai didi

javascript - 使用 onchange 显示图像的名称 ="readURL(this);"

转载 作者:太空宇宙 更新时间:2023-11-04 16:02:00 25 4
gpt4 key购买 nike

preventDefault()onchange()一起不会显示图像文件名我需要做什么才能使其工作?我怎样才能摆脱preventDefault()

jQuery("#btn-Preview-Image").click(function(e) {
e.preventDefault();
renderContent();
jQuery("#download").removeClass("disabled");
});


jQuery("#download").click(function(e) {
e.preventDefault();
return jQuery(this).hasClass("disabled");
});

输入onchange() :-

<input type="file"  name="file1" id="file1" onchange="readURL(this);"/> 

最佳答案

出于安全原因,浏览器不允许获取所选文件的原始路径。

您还可以获得什么,如下例所示:-

$('input[type=file]').change(function () {
console.dir(this.files[0]);
console.dir(this.files[0].name);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="file" name="file1" id="file1"/>

关于javascript - 使用 onchange 显示图像的名称 ="readURL(this);",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42196716/

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