テキストファイルの内容をhtmlファイルに含めることができるように、JavaScriptを使用してhtmlファイルと同じディレクトリにあるテキストファイルを読み込もうとしています。
fopen および fread 関数をテストするために必要なコードは次のとおりです
<html>
<head>
</head>
<body>
<script>
fh = fopen('my.txt', 0); // Open the file for reading.
if(fh!=-1) // Check if the file has been successfully opened.
{
length = flength(fh); // Get the length of the file.
str = fread(fh, length); // Read in the entire file.
fclose(fh); // Close the file.
// Display the contents of the file.
write(str);
}
</script>
</body>
</html>
「書き込み」を document.write に置き換えてみましたが、まだ何もありません。
例として、このコードを含むいくつかの Web サイトを次に示します。
http://answers.yahoo.com/question/index?qid=20130519190823AA2lQ1W
http://www.c-point.com/JavaScript/articles/file_access_with_JavaScript.htm
どんな助けでも大歓迎です。
ありがとうございました!