javascript浏览文件并在iframe中显示内容

javascript browse file and show content in iframe

本文关键字:显示 iframe 浏览 文件 javascript      更新时间:2023-09-26

有人能帮助我使用输入法而不是SRC将文本获取到iframe吗。我使用它来读取文本,并在IE8中使用它作为fileReader方法的替代方法,这样我就可以使用文本文件中的数据来满足我的需求代码行是。

<input type="file" name="fileread" />
<iframe id='iframe1' name='iframe1' src='fileread'> </iframe>

用javascript读取文件并不像听起来那么容易。我建议你先检查一下https://developer.mozilla.org/en-US/docs/Web/API/FileReader,有一份文档。我在网上找到了一篇与你的问题有关的好文章:http://www.htmlgoodies.com/beyond/javascript/read-text-files-using-the-javascript-filereader.html#fbid=9oig0UB93RL.

希望你能有所收获。