答案 0 :(得分:1)
您可以使用javascript阅读该文件(请参阅链接),然后将其添加到textarea。
https://stackoverflow.com/a/14446538/2550732
编辑:
<强>使用Javascript:强>
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
alert(allText);
}
}
}
rawFile.send(null);
}
<强> Jquery的:强>
$.ajax({
url : "helloworld.txt",
dataType: "text",
success : function (data) {
$(".text").html(data);
}
});
答案 1 :(得分:0)