gpt4 book ai didi

JQuery 检查输入文件

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

我在如下所示的组中有文件输入字段。我希望所有这些都是必填字段。

<!-- file upload group -->
<div class="Fieldset FileUpGroup">
<span class="Legend">File Upload Group: (required)</span>
<input name="fileUploads[]" type="file">
<input name="fileUploads[]" type="file">
<input name="fileUploads[]" type="file">
</div>

我有以下 JQuery 需要验证,但它只验证第一个。

$('.FileUpGroup').each(function() {
if($(this).find('input[type=file]').val() == '') {
Response('- Upload file not selected!', true);
$(this).addClass('Error').fadeOut().fadeIn();
return false;
}
else {
$(this).removeClass('Error');
}
});

谢谢!

最佳答案

您在错误的元素上使用了 each():

$('input[type="file"]').each(function() {
var $this = $(this);
if ($this.val() == '') {
Response('- Upload file not selected!', true);
$this.addClass('Error').fadeOut().fadeIn();
return false;
} else {
$this.removeClass('Error');
}
});

关于JQuery 检查输入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8628657/

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