0

ユーザーが数枚の写真を「input」タグにアップロードしたとします。以下の「input」タグを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 に答える