如何在文件中保存最后选择的选项 JavaScript

发布于 2025-01-08 07:32:57 字数 367 浏览 0 评论 0原文

我这里有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

两人的回忆 2025-01-15 07:32:57

运行时脚本也使用 URL。您编写代码:

object.select1.options = fso.OpenTextFile("c:/Temp/CAD_Kunde.txt", 1, false);

object.select1.options = fso.OpenTextFile("c:\\Temp\\CAD_Kunde.txt", 1, false);

单个反斜杠表示转义字符。

Runtime scripting uses URLs as well. You write your code:

object.select1.options = fso.OpenTextFile("c:/Temp/CAD_Kunde.txt", 1, false);

or

object.select1.options = fso.OpenTextFile("c:\\Temp\\CAD_Kunde.txt", 1, false);

Single backslash represents an escape character.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文