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