如何在 HTML 中读取本地文本文件
HTML 自身无法直接访问本地文件系统。但是,我们可以通过以下方法解决这个问题:
使用 FileReader API
FileReader API 提供了 readAsText()
方法,可用于读取文本文件内容:
<code class="html"><input type="file" id="file-input"><script> const fileInput = document.getElementById(\'file-input\'); fileInput.addEventListener(\'change\', (e) => { const file = e.target.files[0]; const reader = new FileReader(); reader.onload = (e) => { const text = e.target.result; // 使用 text }; reader.readAsText(file); }); </script>
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。