保持信息保存在Dreamweaver中开发的jQuery Mobile应用程序中

时间:2013-07-13 00:33:49

标签: iphone html5 cordova dreamweaver

我正在使用jQuery Mobile(Dreamweaver)开发一个简单的应用程序。 我想了解每次打开应用程序时如何保存JQ Slider和Collapsible Block的保存值。我不必处理任何特定的功能,它只能记住一个可选的数字或单词。

感谢您的帮助

干杯

1 个答案:

答案 0 :(得分:0)

使用localStorage API:

localStorage.setItem("word", "your word goes here");
alert( "word = " + localStorage.getItem("word"));