javascript – ActiveXObject未定义,无法找到变量:ActiveXObject

前端之家收集整理的这篇文章主要介绍了javascript – ActiveXObject未定义,无法找到变量:ActiveXObject前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > ActiveXObject in Firefox or Chrome (not IE!)3
我想在本地创建文本文件,当我浏览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浏览器上可用.所以每一个其他的用户将会抛出一个错误

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

原文链接:https://www.f2er.com/js/152588.html

猜你在找的JavaScript相关文章