评论资讯 [ 总 11 则 ]
·飞飞 - 2026-2-25 22:31
·小白 - 2026-2-25 22:11
·飞飞 - 2026-2-25 22:09
·悄然 - 2026-2-24 19:29
·飞飞 - 2026-2-24 19:28
·悄然 - 2026-2-23 08:29
·马黑 - 2026-2-22 20:40
·马黑 - 2026-2-22 12:45
·水手 - 2026-2-22 12:44
·马黑 - 2026-2-22 12:43
·小白 - 2026-2-25 22:11
·飞飞 - 2026-2-25 22:09
·悄然 - 2026-2-24 19:29
·飞飞 - 2026-2-24 19:28
·悄然 - 2026-2-23 08:29
·马黑 - 2026-2-22 20:40
·马黑 - 2026-2-22 12:45
·水手 - 2026-2-22 12:44
·马黑 - 2026-2-22 12:43
友情链接
网站统计
JS打开本地文本文件
【附】代码
<style>
.ma { width: 100%; display: flex;flex-direction: column; gap: 10px; }
.ma > p:nth-of-type(2) {text-align: center; }
#txtElm { width: 800px; height: 400px; }
</style>
<div class="ma">
<p><input type="file" id="sFile" accept=".txt, .bat, .php"></p>
<p><textarea id="txtElm"></textarea></p>
</div>
<script>
sFile.onchange = function() {
var reader = new FileReader();
reader.readAsText(this.files[0]);
reader.onload = function() {
txtElm.value = this.result;
};
};
</script>
前一篇: 烟消云散:CSS文本特效演示
下一篇: 用CSS+HTML画一棵儿童画的树
发表评论:
评论列表 [1条]
#1 | 悄然 于 2024-1-22 08:51 发布: 这个显示框可拖动变宽窄大小。。。灵活。。。

