©
本文檔使用 php中文網手册 發布
在页面切换后显示之前,弹出文本信息:
效果预览 »$(document).on("pagebeforeshow","#pagetwo",function(){
alert("pagebeforeshow event fired - pagetwo is about to be shown");
});
pagebeforeshow 是在页面切换后显示之前,触发的事件。
相关事件:
注意: 该事件在每个过渡页面开始/停止时触发。
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 属性返回过渡的上一个页面。