0

在 jquerymobile 中加载普通页面时,我得到了很好的加载动画,但是当我从 ajax 源中提取时,我没有得到动画,用户可能会因为他们没有提交表单而感到困惑。

我无法从谷歌搜索中找到任何可以调用动画的内容

4

1 回答 1

1

如果您像往常一样提交表单,JQM 会自动对表单进行 ajax 处理,您就会得到您所指的整洁的小动画。IE

<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();
于 2012-04-14T03:38:13.023 回答