HTML JS 動態顯示 input file 選取內容


使用 HTML 取得本地檔案

1
<input type="file" id="testFile" />

File API 可以從 File 物件中讀取 FileList ,FileList 內包含使用者所選取的檔案。
如果使用者只選擇一個檔案,那麼我們只需要考慮第一個檔案物件。

Read more