在 HTML 中,透過 File API 讀取本機檔案。步驟包括:使用 <input> 元素建立檔案選擇器。新增事件監聽器至檔案選擇器。在事件處理程序中,使用 FileReader 物件讀取檔案。讀取成功後,result 屬性包含文件內容,可依需求處理。
如何使用HTML 讀取本機檔案
在HTML 中,讀取本機檔案主要透過使用File API 。 File API 是一組 JavaScript API,允許網頁從使用者裝置讀取檔案。
所需步驟:
使用<input>
元素建立檔案選擇器:
<input type="file">
# 新增事件監聽器:
<code class="javascript">const input = document.querySelector('input[type="file"]'); input.addEventListener('change', handleFileSelect);</code>
在事件處理程序中讀取檔案:
<code class="javascript">function handleFileSelect(event) { const files = event.target.files; const reader = new FileReader(); reader.onload = function() { // 读取成功后,`result` 属性将包含文件的内容。 const content = reader.result; // 对文件内容执行所需的处理。 }; reader.readAsText(files[0]); }</code>
範例程式碼:
<code class="html"><form> <input type="file" id="file-input"> <button type="submit">读取文件</button> </form> <script> const input = document.querySelector('input[type="file"]'); input.addEventListener('change', function(event) { const files = event.target.files; const reader = new FileReader(); reader.onload = function() { const content = reader.result; console.log(content); }; reader.readAsText(files[0]); }); </script></code>
注意事項:
以上是html如何讀取本機文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!