代码搜索:Scripting
找到约 2,777 项符合「Scripting」的源代码
代码结果 2,777
www.eeworm.com/read/251840/12315879
html 18.4.1 createtextfile方法.html
var oFso=new ActiveXObject("scripting.FileSystemObject");
try
{
var oTxt=oFso.CreateTextFile("d:\\test.txt",true);
oTxt.WriteLine("测试一下");
oTxt.Close();