我已经在下面带有 id 的 JQM 页面page1
:
$('#page1').live('pageinit', function(event, data){
});
如果我有另一个带有 id 的 JQM 页面page2
并且想要与 id 相同pageinit
,page1
如何调用它或添加事件而不复制事件中的所有代码page1 pageinit
。
我已经在下面带有 id 的 JQM 页面page1
:
$('#page1').live('pageinit', function(event, data){
});
如果我有另一个带有 id 的 JQM 页面page2
并且想要与 id 相同pageinit
,page1
如何调用它或添加事件而不复制事件中的所有代码page1 pageinit
。
$('#page1,#page2')
应该做的伎俩。
I think it will be triggered only once in a multi-page template.
See page load events and page change events: http://jquerymobile.com/test/docs/api/events.html