This question already has answers here:
ActiveXObject in Firefox or Chrome (not IE!)
(4个答案)
5年前关闭。
如何使用JS创建文件夹:
我收到此错误:
我知道“ ActiveXObject”只能在IE上工作,因此我需要在所有浏览器上都可以工作的其他解决方案。
(4个答案)
5年前关闭。
如何使用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上工作,因此我需要在所有浏览器上都可以工作的其他解决方案。
最佳答案
仅Internet Explorer支持ActiveXObject
。如果您在其他浏览器中尝试此操作,则将不支持此功能。
10-06 08:24