如何使用JS创建文件夹:
var sFolderPath = 'images';
var fso = new ActiveXObject('Scripting.FileSystemObject');
if (!fso.FolderExists(sFolderPath)) {
fso.CreateFolder(retVal);
return;
}
我收到此错误:Uncaught ReferenceError: ActiveXObject is not defined
我知道" ActiveXObject"只在IE上工作,所以我需要其他适用于所有浏览器的解决方案..
答案 0 :(得分:1)
只有Internet Explorer支持ActiveXObject
。如果您在其他浏览器中尝试此操作,则无法获得支持。