摘要: 1 <html> 2 <head> 3 <script> 4 var fso = new ActiveXObject("Scripting.FileSystemObject"); 5 var ForReading = 1, ForWriting = 2, ForAppending = 8; 6 function createFile(file){ 7 var tf = fso.CreateTextFile(file, true); 8 tf.Close(); 9 }10 function readFileOnly(file){11 var 阅读全文
posted @ 2012-11-21 14:47 高 明 阅读(4150) 评论(0) 推荐(0) 编辑