可能来不及回答
当用户从一个视图移到另一个视图时,视图共享相同的布局,他/她不会navigate away
离开该视图。您应该使用 jquery 移动事件
使用pagebeforehide
或pagehide
将为您做。这里是文档的摘录
页面前隐藏
在实际过渡动画开始之前,在我们正在过渡的“fromPage”上触发。此事件的回调将接收一个数据对象作为其第二个参数。此数据对象具有以下属性:
nextPage (object)
A jQuery collection object that contains the page DOM element that we are transitioning to.
Note that this event will not be dispatched during the transition of the first page > at application startup since there is no previously active page.
页隐藏
过渡动画完成后在“fromPage”上触发。此事件的回调将接收一个数据对象作为其第二个参数。此数据对象具有以下属性:
nextPage (object)
A jQuery collection object that contains the page DOM element that we just transitioned to.
Note that this event will not be dispatched during the transition of the first page at application startup since there is no previously
活动页面。
您可以通过绑定回调函数的第二个参数访问 prevPage 或 nextPage 属性。