提交表单后切换“提交”按钮?
我的网站上有一个很大的表单,加载下一页的时间比平常要长一些。
有没有一种简单的方法可以在单击后将我的“提交”按钮切换为动画“正在加载...”图形?只是为了让用户知道我们仍在处理提交。
非常感谢您的指点,
迈克尔
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这通常是通过 hidihg 或在进行 ajax 调用之前禁用 submti 按钮然后在整个处理程序上恢复更改来实现的。示例:
完整的处理程序在这种情况下很有用,因为它在成功响应和错误响应的情况下都会运行。
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:
The complete handler is useful in this case as it is run both in the case of a successful response and an error response.
您想要使用 jQuery 的 提交事件处理程序:
You want to use jQuery's submit event handler: