我怎样才能显示“正在加载”?我点击 jQuery Mobile 的提交按钮后弹出?

发布于 2024-12-09 10:26:34 字数 182 浏览 0 评论 0原文

我正在使用 jQuery Mobile javascript 库。在我的表单中,我似乎无法实现这个 表单 是什么正在做。单击“提交”按钮后。我希望用户看到“正在加载”弹出窗口。

I'm using the jQuery Mobile javascript library. In my form, I can't seem to acheive what this form is doing. After I click on the Submit button. I want the user to see the 'loading' pop up.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱没勇气 2024-12-16 10:26:34

重要提示

请注意 Michael Kariv 的以下评论:

已弃用,至少在 jqm 1.3.2 中可能更早。查看代码可以发现

showPageLoadingMsg: function( theme, msgText, textonly ) {
    $.mobile.loading('show', theme, msgText, textonly );
}

原来的答案是:


$('#yourform').submit(function(){
    $.mobile.showPageLoadingMsg(); // http://jquerymobile.com/test/docs/api/methods.html
})

再次隐藏消息:$.mobile.hidePageLoadingMsg();

Imporant

Please note the following comment by Michael Kariv:

deprecated, at least in jqm 1.3.2, may be earlier. looking into the code reveals

showPageLoadingMsg: function( theme, msgText, textonly ) {
    $.mobile.loading('show', theme, msgText, textonly );
}

The original answer was:


$('#yourform').submit(function(){
    $.mobile.showPageLoadingMsg(); // http://jquerymobile.com/test/docs/api/methods.html
})

Hiding the message again: $.mobile.hidePageLoadingMsg();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文