我有以下内容可以读取本地文件并显示,
<html>
<head>
<script>
function readfile() {
document.getElementById('iframe').contentDocument.body.firstChild.innerHTML;
}
</script>
</head>
<body>
<iframe id='iframe' src='txt2.txt' onload='readfile()'> </iframe>
<input type="file" id="fileinput" />
</body>
</html>
但是在这里您可以看到我已经将文件路径指定为“txt2.txt”,但我不想事先提供文件名,而是想加载文件并使用 input type="file" 显示其内容,如何在不使用 ajax 的情况下做到这一点?