jQuery Mobile pagehide 事件
实例
在页面切换后旧的页面隐藏之后弹出一些文本信息:
$(document).on("pagehide","#pagetwo",function(){
alert("pagehide 事件触发 - 页面二隐藏");
});
alert("pagehide 事件触发 - 页面二隐藏");
});
尝试一下 »
定义和用法
pagehide 是在页面切换后老页面隐藏之后,触发的事件。
相关事件:
- pagebeforehide - 在页面切换后老页面隐藏之前,触发的事件。
- pagebeforeshow - 在页面切换后显示之前,触发的事件。
- pageshow - 在页面切换后显示之后,触发的事件。
注意: 该事件在页面每次过渡 开始/停止 时都会触发。
语法
在 jQuery Mobile 中为所有页面触发事件:
$("document").on("pagehide",function(event){...})
尝试一下
为指定页面触发事件:
$("document").on("pagehide","page",function(event,data){...})
尝试一下
参数 | 描述 |
---|---|
function(event,data) | 必须。 指定 pagehide 事件触发时执行的函数。
该函数含有以下两个参数:
|
page | 可选。 指定 pagehide 事件触发时指向的页面id。 内部页面, 请使用 #id。外部页面,请使用 externalfile.html。 |
更多实例
相关事件演示
该实例展示了 pagebeforeshow,
pageshow, pagebeforehide 和 pagehide 事件的触发。
事件对象
使用 event.timeStamp 属性。
数据对象
使用 nextPage 属性返回过渡的页面。
点我分享笔记