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();
}
- 何か案が!
ありがとうGerjanOnline +1 –