cordova在后退按钮后保持页面状态

时间:2015-10-29 10:52:42

标签: javascript jquery cordova redirect

我已经完成了一个从Web服务获取数据的应用程序,这些数据会在滚动时生成div,所以如果我向下滚动我会加载更多数据等等...... 当我点击其中一个div o获取重定向:

function redirect_click(clicked_id,soggetto,div_id){
        return function(){
         var fff=document.getElementById("d"+div_id);
         fff.style.backgroundColor=("#D6D6C2");
         fff.style.color=("white");
         sessionStorage.setItem("Soggetto", clicked_id);
         sessionStorage.setItem("Soggetto_nome", soggetto);
         window.location = "address.html";
        }
    }

所以window.location在address.html页面上开车送我......

我想要实现的是当我从address.html返回上一页时带回按钮(或另一个带回我的按钮)我得到了从那一刻起加载的所有数据(数据按字母顺序排列)订购,所以让我说我向下滚动到G字母然后当我回来时我点击“GIGIO”我想要在字母G上。

我搜索了“重定向后保持页面状态”,但我没有找到任何内容。

此外,之前我使用session.storage保存了数据,但我不知道这样做是否正确。

0 个答案:

没有答案