本文介绍了使用javascript创建一个txt文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 您好, 我正在尝试创建一个可以创建文本文件的javascript函数,这样我就可以在其中编写一些信息并稍后阅读。 我正在使用ActiveXObject(" Scripting.FileSystemObject)", 函数makefile(){ var fso; var该文件; fso = new ActiveXObject(" Scripting.FileSystemObject"); thefile = fso.CreateTextFile(" c:\\ test .txt",true); fso.close() } 但没有发生任何事情, 所以请帮助我, 谢谢你Hi there,i''m trying to create a javascript function that would create a text file so i can write some informations in it and read it later.I''m using the "ActiveXObject("Scripting.FileSystemObject")",function makefile(){var fso;var thefile;fso = new ActiveXObject("Scripting.FileSystemObject");thefile=fso.CreateTextFile("c:\\test.txt",true);fso.close()}but nothing is happening,so please help me,Thank u推荐答案 这可能只在IE浏览器上支持。此外,允许网页创建文件是一个安全漏洞。如果你只需要记住值,为什么不使用cookie呢?This will probably only be supported on IE browsers. Also, allowing a web page to create files is a security hole. If you need to just remember values why not use cookies instead? 这篇关于使用javascript创建一个txt文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-12 14:18