0

我已经在下面带有 id 的 JQM 页面page1

$('#page1').live('pageinit', function(event, data){

});

如果我有另一个带有 id 的 JQM 页面page2并且想要与 id 相同pageinitpage1如何调用它或添加事件而不复制事件中的所有代码page1 pageinit

4

2 回答 2

2

$('#page1,#page2')应该做的伎俩。

请参考 - http://api.jquery.com/multiple-selector/

于 2012-12-13T06:11:01.187 回答
0

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

于 2012-12-13T07:58:55.730 回答