在 Titanium 应用程序中保存表单字段的数据
我正在使用 html 和 javascript 在钛上编写一个程序,并且我有一个表单设置页面,用于设置其他表单字段的值我需要保存在文本框中输入的数据并在下次启动程序或重新加载时加载它们页面,我该如何以简单的方式做到这一点?
<div id="formh">
<form id="form">
<select name="test" id="test">
<option id="op1" value="1">1234</option>
<option id="op2" value="2">2134</option>
</select>
</form>
</div>
<div id="st">
<form name="settings">
Op1 Value<input type="text" value="" id="inputOpt1" />
Op2 Value<input type="text" value="" id="inputOpt2" />
</form>
</div>
I am writing a program on titanium using html and javascript, and I have a form settings page that sets the values for other form fields I need to save the data entered in the text boxes and load them the next time the start the program or reload the page, how would I do this in a simple way?
<div id="formh">
<form id="form">
<select name="test" id="test">
<option id="op1" value="1">1234</option>
<option id="op2" value="2">2134</option>
</select>
</form>
</div>
<div id="st">
<form name="settings">
Op1 Value<input type="text" value="" id="inputOpt1" />
Op2 Value<input type="text" value="" id="inputOpt2" />
</form>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在表单的 onSubmit 事件(如果您不需要提交按钮,则为输入的 onChange),您可以使用 Titanium.Database 或 Titanium.App.Properties - 我认为后者在这种情况下更合适。下面是 jQuery 中的一个示例(为简单起见,尽管您也可以不使用它):
然后,基本上对其他表单执行相反的操作,以从 Titanium 检索属性并设置输入字段值。
更新
完整示例(同样,不确定我是否完全理解所需的交互):
On the form's onSubmit event (or onChange for the inputs if you don't want a submit button), you can save the settings using the Titanium.Database or Titanium.App.Properties - I think the latter would be more appropriate in this case. Here would be an example in jQuery (for simplicity, though you could do it without):
Then, basically do the opposite for the other form to retrieve the Properties from Titanium and set the input field values.
UPDATE
The full example (again, not sure that I completely understand the desired interaction):