在jquerymobile中加载普通页面时,我得到了很好的加载动画,但是当我从ajax源代码中提取时,我没有得到动画,用户可能会因为没有提交表单而感到困惑。
我无法通过谷歌搜索找到任何动画来调用动画
答案 0 :(得分:1)
如果您像往常一样提交表格,JQM会自动提交表格,您可以获得整齐的小动画。即。
<form action="processMyForm.php" method="post">
...inputs here
</form>
您还可以访问以下方法。
$.mobile.showPageLoadingMsg("b", "This is only a test"); // options are (theme, text, boolean text only)
$.mobile.hidePageLoadingMsg();