来自文档here:
Use $(document).bind('pageinit'), not $(document).ready()
我在JQM页面中有ff:
$(document).bind('pageinit',function(event){
//some code here
});
该页面是通过JQM页面中的ajax加载的,但它根本没有被触发。如何使它工作?
由于
答案 0 :(得分:1)
试试这个,它来自doc
$( '#aboutPage' ).live( 'pageinit',function(event){
alert( 'This page was just enhanced by jQuery Mobile!' );
});