下面是我有顯示文件輸入和一個「清除文件」按鈕的jQuery代碼的一部分。如何清除文件輸入
var $imagefile = $('<input />').attr({
type: 'file',
name: 'imageFile',
class: 'imageFile'
});
$image.append($imagefile);
var $imageclear = $('<input />').attr({
type: 'button',
name: 'imageClear',
class: 'imageClear',
value: 'Clear File'
});
$image.append($imageclear);
現在我有「清除文件」按鈕的原因是因爲如果你點擊按鈕,那麼它將清除文件輸入中的任何東西。我怎麼編碼它,以便它在我點擊「清除文件」按鈕時實際清除文件輸入?
看到這個:http://stackoverflow.com/questions/1043957/clearing-input-type-file-using-jquery – 2012-03-08 12:41:53
見這也https://forum.jquery.com/topic/how-要清除一個文件輸入即ie – 2015-07-21 15:02:51