html 提交后禁用按钮http://stackoverflow.com/questions/13606573/disable-button-after-submit-with-jquery

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 提交后禁用按钮http://stackoverflow.com/questions/13606573/disable-button-after-submit-with-jquery相关的知识,希望对你有一定的参考价值。

$('form').submit(function() {
  $(this).find("button[type='submit']").prop('disabled',true);
});
<form method="post">
  <button type='submit'>Send</button>
</form>

以上是关于html 提交后禁用按钮http://stackoverflow.com/questions/13606573/disable-button-after-submit-with-jquery的主要内容,如果未能解决你的问题,请参考以下文章

禁用表单提交按钮,而不阻止 HTML5 验证

html 提交后禁用按钮http://stackoverflow.com/questions/13606573/disable-button-after-submit-with-jquery

如何在第一次提交(在客户端)后立即禁用 ASP.NET 按钮?

提交后禁用Rails中的link_to按钮以防止重复提交

html 禁用提交按钮,直到填写完所有字段

在 onSubmit 事件返回 false 并发出警报后,提交按钮会自动禁用。在 onchange 事件之后也无法启用它