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