0

假设用户已将几张图片上传到“输入”标签中。你如何用 jQuery 清空(又名重置)下面的“输入”标签?

<form id="ImgForm" enctype="multipart/form-data">
  <input name="pictures[]" type="file" multiple />
</form>
4

2 回答 2

2
$('#ImgForm input[type="file"]').val('');

或者

$('#ImgForm').reset(); // will reset form.

或者

// trigger reset button click event manually
$('#ImgForm input[type="reset"]).trigger('click');
于 2013-09-19T04:23:48.800 回答
1

您可以使用重置表单reset

$('#ImgForm').each(function(){
   this.reset();
});

如果你想删除/清空它的值

$('#ImgForm input[type="file"]').val('');
于 2013-09-19T04:23:54.837 回答