我有一个包含两个上传输入的表单。
<form action="http://localhost/royalshop/administrator/submit_product" method="post" accept-charset="utf-8" id="myform" enctype="multipart/form-data">
<div class="productpicstables">
<input type="file" name="file1" />
</div>
<div class="productpicstables">
<input type="file" name="file2" />
</div>
</form>
我想用jQuery验证第一个。我怎么能这样做?
大小为512 * 512应该是必需的并且更好。
感谢。
答案 0 :(得分:2)
使用相同的名称:
$('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');
}
});