摘要:
1.用JS创建文件 var fso, f1; fso = new ActiveXObject("Scripting.FileSystemObject"); f1 = fso.CreateTextFile("c:\\testfile.txt", true); 2.用JS创建并写入数据 function 阅读全文
摘要:
JS的原始数据类型有: 1.number; 2.String; 3.boolean; 4.null; 5.undefined; JavaScript 对象 Array Date Math Function arguments Events arguments对象 //arguments的应用 fun 阅读全文