我对编程和 phonegap 很陌生。我有html背景。我在 Dreamweaver CS5.5 中制作了一个小型 android 应用程序,它将在本地存储数据。我的应用程序运行良好,我可以转到不同的页面。我现在需要保存表格。有人可以帮助我完成我需要执行此操作的步骤吗?我希望它不是超级难,我能理解。它还使用移动 jquery,但我没有在其中编辑任何内容。
这是我的表格。我希望将此信息保存在此页面或其他页面上,以便稍后我也可以返回并进行编辑。
<form action="" method="get" id="customerDetail">
<label for="name">
<input type="text" name="name" id="name" placeholder="Name" /></label>
<label for="email">
<input type="email" id="email" name="email" placeholder="Email"></label>
<label for="comment">
<textarea id="comment" name="comment" cols="30" rows="10" placeholder="Insert comments"></textarea>
</label>
<input type="submit" value="Save">
</form>
谢谢!!