2011-11-13 10 views
4

jquery.mobile-1.0rc1;ここではFF-Jquery Mobile:mobile.pageLoading()でエラーが発生する

$.mobile.pageLoading() is not a function 

にクローム

Uncaught TypeError: Object #<Object> has no method 'pageLoading' 

&に簡単なdialog-

エラー・メッセージで作業中にエラーを取得することで、コードsnippet-

$(document).delegate('#importCCRLink', 'click', function() { 
    $(this).simpledialog({ 
    'mode' : 'bool', 
    'prompt' : 'Are you sure to import?', 
    'useModal': true, 
    'buttons' : { 
     'OK': { 
     click: function() { 
     showTempLoading(); 
     }, 
    theme: "p" 
     }, 
     'Cancel': { 
     click: function() { 
      //alert('Cancel'); 
     } 
     } 
    } 
    }) 
}) 

function showTempLoading() 
{ 
    $.mobile.pageLoading(); 
} 

- 何か案が!

答えて

15

$.mobile.pageLoading()を削除し、$.mobile.showPageLoadingMsg()$.mobile.hidePageLoadingMsg()と交換してください。

+0

ありがとうGerjanOnline +1 –

関連する問題