gpt4 book ai didi

Javascript 验证允许多个文件上传的字段。检查是否已做出选择?

转载 作者:行者123 更新时间:2023-11-29 15:48:31 24 4
gpt4 key购买 nike

我有一个允许多个文件上传的表单。

<input name="uploadedfile[]" type="file" multiple="true"/>

现在,我想使用 javascript 验证它以检查是否选择了文件。我尝试了以下但失败了

if(form.uploadedfile.length < 1)
{
alert("You Forgot to select an image");
return false;
}

我知道它是一个数组,但我也尝试过

if(form.uploadedfile.value == '')
{
alert("You Forgot to select an image");
return false;
}

谁能帮我解决这个问题。谢谢

最佳答案

一种方法是:

$('input[type="file"][multiple]').change(
function(e){
var numFiles = e.currentTarget.files.length;
if (numFiles == 0){
// no files
}
else {
// files chosen
console.log(numFiles);
}
return false;
});

JS Fiddle .

关于Javascript 验证允许多个文件上传的字段。检查是否已做出选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8406529/

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