在我正在开发的 android 应用程序中,我使用的是 jqtouch。如您所知,对于 jqtouch,它将在 div 中定义的页面之间切换。
在这里,我有一个如下代码,因此当单击下一步按钮时,它将转到#start 页面。
<a id="continue" style="margin-bottom: 120px" href="#start" onclick="loadDb(this.id)" class="whiteButton slide">Continue</a>"
但是有时,当单击继续按钮时,似乎没有调用 loadDb,并且 #start 页面没有更新为使用 loadDb 加载的新数据。它将在页面中显示以前的数据。看起来它是一个缓存页面。
有没有办法解决这个问题?
很多谢谢!