JavaScript でローカル ファイルを 1 行ずつ読み込みたい。このファイルの最後に到達するかどうかを確認できます。例えば:
file = new ActiveXObject("Scripting.FileSystemObject");
// Sets the variable "f" to equal the new open file contents
f = file.OpenTextFile("c:\\wantlist.txt", 1);
s = f.ReadLine()
While(s != EOF)
{
//. Do some thing
s = f.ReadLine()
}
JavaScriptでEOFとは何ですか? または、この問題に対処する別の方法がありますか? どうもありがとうございました!