日期:2014-05-16 浏览次数:20449 次
var fso = new ActiveXObject("Scripting.FileSystemObject");
var ds = fso.OpenTextFile('1.txt', 1, false);
if (!ds.atendofstream){
var sg = ds.ReadAll();
}
ds.Close();
document.write(sg);
<!DOCTYPE html>
<html>
<head>
<title>read text file</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<input type="file" id="files" name="files[]" multiple />
<output id="list"></output>
<script>
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// Loop through the FileList
for (var i = 0, f; f = files[i]; i++) {
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Print the contents of the file
var span = document.createElement('span');
span.innerHTML = ['<p>',e.target.result,'</p>'].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the file
//reader.readAsDataText(f,UTF-8);
reader.readAsText(f);
&nbs