fso=new ActiveXObject("scripting.filesystemobject")folder=fso.getFolder(dir)f=new Enumerator(folder.files)x=f.item()document.write(x,"--",typeof(x))结果:C:UsersDesktop酬金工单xxxx.xlsx--object为什么enumerator.item()返回的不是字符串呢?不是字符串怎样才能转化成字符串?x.toString() 显示为对象不支持“toString”属性或方法找到了,使用x.Path就可以得到string了
添加回答
举报
0/150
提交
取消