我正在使用jQuery Mobile(Dreamweaver)开发一个简单的应用程序。 我想了解每次打开应用程序时如何保存JQ Slider和Collapsible Block的保存值。我不必处理任何特定的功能,它只能记住一个可选的数字或单词。
感谢您的帮助
干杯
答案 0 :(得分:0)
使用localStorage
API:
localStorage.setItem("word", "your word goes here");
alert( "word = " + localStorage.getItem("word"));