提交表单后切换“提交”按钮?

发布于 2024-11-28 23:32:10 字数 136 浏览 0 评论 0原文

我的网站上有一个很大的表单,加载下一页的时间比平常要长一些。

有没有一种简单的方法可以在单击后将我的“提交”按钮切换为动画“正在加载...”图形?只是为了让用户知道我们仍在处理提交。

非常感谢您的指点,

迈克尔

I have a big form on my website that takes a little longer than usual to load the next page.

Is there an easy way to switch my 'Submit' button to an animated "Loading..." graphic once clicked? Just so the user knows we're still working on the submission.

Many thanks for any pointers,

Michael

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

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

发布评论

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

评论(2

痴情 2024-12-05 23:32:10

这通常是通过 hidihg 或在进行 ajax 调用之前禁用 submti 按钮然后在整个处理程序上恢复更改来实现的。示例:

$('#submit').click(function() {
    $(this).hide();
    $('#loading_anim').show();

    $.ajax(
        ...,
        complete: function() {
            $('#submit').show();
            $('#loading_anim').hide();
        }
    );
});

完整的处理程序在这种情况下很有用,因为它在成功响应和错误响应的情况下都会运行。

This is typically achieved by hidihg or disabling the submti button before making the ajax call and then reverting the change on the complete handler. Example:

$('#submit').click(function() {
    $(this).hide();
    $('#loading_anim').show();

    $.ajax(
        ...,
        complete: function() {
            $('#submit').show();
            $('#loading_anim').hide();
        }
    );
});

The complete handler is useful in this case as it is run both in the case of a successful response and an error response.

掩耳倾听 2024-12-05 23:32:10

您想要使用 jQuery 的 提交事件处理程序

$('#target').submit(function() {
  alert('Handler for .submit() called.');
  $('#loading-overlay').show();
  return false;
});

You want to use jQuery's submit event handler:

$('#target').submit(function() {
  alert('Handler for .submit() called.');
  $('#loading-overlay').show();
  return false;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文