参见英文答案 >
ActiveXObject in Firefox or Chrome (not IE!)3
我想在本地创建文本文件,当我浏览Google Chrome点击按钮它显示错误,如ActiveXObject没有定义,当我浏览safari点击按钮它显示错误,如无法找到变量:ActiveXObject .任何一个可以帮助我.我可以实现和创建文件
我想在本地创建文本文件,当我浏览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 API或File writer API(目前实现的only on Chrome)