我写了一个外部 js 文件,其中有一个函数。在这个函数中,我试图调用 $.mobile.showPageLoadingMsg(); 我该怎么做?我尝试了以下方法,但它不起作用:
function test() {
$.mobile.showPageLoadingMsg();
}
html中包含脚本的顺序如下所示:
<script src="jquery.mobile-1.1.1.min.js"></script>
<script src="jquery-1.7.2.min.js"></script>
<script src="cordova-2.0.0.js"></script>
<script src="master.js"></script>
master.js 是调用者。