如何在文件中保存最后选择的选项 JavaScript
我这里有一个 HTA,有一个名为如下的选择框:object.select1.options 我想将此框中选定的值保存到位于 C 分区上的文件中。当用户重新启动程序时,此复选框中的默认选择应该是最后一个选择。所以我的程序已经创建了文本文件并写入其中。希望你能帮助我。它的JavaScript。
编辑:
var fso = new ActiveXObject("Scripting.FileSystemObject");
object.select1.options = fso.OpenTextFile("c:\Temp\CAD_Kunde.txt", 1, false);
当我使用这个时,我收到一个错误,提示找不到文件,我做错了什么?
i have here an HTA and theres is a selectbox named like this: object.select1.options
I want to save the selected value from this box in a file located on C-Partition. When the user restart the programm the default selection in this checkbox should be the last selection. So my programm already creates the text file and write in it. Hope you can help me. Its JavaScript.
Edit:
var fso = new ActiveXObject("Scripting.FileSystemObject");
object.select1.options = fso.OpenTextFile("c:\Temp\CAD_Kunde.txt", 1, false);
when i use this i get an error which says file not found what did i wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
运行时脚本也使用 URL。您编写代码:
或
单个反斜杠表示转义字符。
Runtime scripting uses URLs as well. You write your code:
or
Single backslash represents an escape character.