<p>HTML 可用於開啟本機文件,步驟如下:建立一個 .html 檔案並匯入 jQuery 庫。建立一個輸入字段,允許使用者選擇文件。監聽檔案選擇事件並使用 FileReader() 物件讀取檔案內容。將讀取的文件內容顯示到網頁上。<p> <p>如何使用HTML 開啟本機檔案 <p>HTML(超文本標記語言)通常用於建立網頁,但它也可以用來讀取和顯示本地文件。 <p>步驟:
.html
副檔名(例如:myfile.html
)。 <head>
部分:<code class="html"><script src="https://code.jquery.com/jquery-3.6.0.min.js"></script></code>
<input>
元素,讓使用者選擇要開啟的檔案:<code class="html"><input type="file"></code>
change()
事件來監聽檔案選擇:<code class="html"><script> $("input[type=file]").change(function() { // 文件选择后执行此函数 }); </script></code>
FileReader()
物件讀取檔案的內容: <code class="javascript">var file = this.files[0]; var reader = new FileReader(); reader.onload = function() { // 读取的文件内容存储在 `reader.result` 中 }; reader.readAsText(file);</code>
<div>
或<p>
) 將其顯示到網頁上。 <code class="html"><!DOCTYPE html> <html> <head> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> </head> <body> <input type="file"> <script> $("input[type=file]").change(function() { var file = this.files[0]; var reader = new FileReader(); reader.onload = function() { $("#result").html(reader.result); }; reader.readAsText(file); }); </script> <div id="result"></div> </body> </html></code>
以上是html怎麼開啟本機文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!