确定在Kendo Mobile视图中是否单击了后退按钮?

时间:2013-08-28 06:37:15

标签: javascript jquery kendo-ui kendo-mobile

在我看来,除非用户带有后退按钮,否则我想执行操作。有没有办法在视图中确定源请求是否来自后退按钮?

以下是我试图在以下情况中执行此操作的视图:

<div data-role="view" data-show="onShow"...>...</div>

onShow: function (e) {
  if (???) { //How to determine if user came via back button or not
    //Do something
  }
}

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码处理应用程序中的后退按钮。

/*
Device Back Button Handling of all html pages                      
*/
document.addEventListener("deviceready", deviceInfo, true);            
function deviceInfo() {
document.addEventListener("backbutton", onBackButton, true);
} 

function onBackButton() {
    var item = app.view().id;
        switch (item) {
                 case "index.html"
                 /*your scenario*/
                 break;
                 case "2ndpage.html"
                 /*your scenario*/
                 break;

}