This question already has answers here:
ActiveXObject in Firefox or Chrome (not IE!)

(4个答案)


6年前关闭。




我想在本地创建文本文件,当我在Google chrome中浏览时,单击按钮显示错误,例如 ActiveXObject未定义,当我在 Safari 中浏览时,单击按钮显示错误,例如变量:ActiveXObject 。任何人都可以帮助我。我如何实现和创建文件。
<script>
      function createFile() {
      var object = new ActiveXObject("Scripting.FileSystemObject");
      var file = object.CreateTextFile("C:\\Hello.txt", true);
      file.WriteLine('Hello World');
      alert('Filecreated');
      file.WriteLine('Hope is a thing with feathers, that perches on the soul.');
      file.Close();
      }
    </script>
<input type="Button" value="Create File" onClick='createFile()'>

最佳答案

ActiveXObject仅在IE浏览器上可用。因此,其他所有useragent都会引发错误

在现代浏览器上,您可以改用File APIFile writer API(当前实现的only on Chrome)

关于javascript - ActiveXObject未定义,找不到变量: ActiveXObject [duplicate],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11101641/

10-11 12:23