我正在尝试使用 javascript 读取与我的 html 文件位于同一目录中的文本文件,以便我可以在我的 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 替换'write',但仍然没有。
以下是一些以此代码为例的网站:
http://answers.yahoo.com/question/index?qid=20130519190823AA2lQ1W
http://www.c-point.com/JavaScript/articles/file_access_with_JavaScript.htm
任何帮助都将不胜感激。
谢谢!