bootstrapValidator 重新启用提交按钮的方法
bootstrapValidator 使用中,由于字段检查等原因,致使提交按钮失效。如何重新启用提交按钮呢? 下面一句代码可以实现启用提交按钮: $('#loginForm').bootstrapValidator('disableSubmitButtons', false); 下面看下Bootstrap中点击后禁用按钮的最佳方法 为了防止在Bootstrap中点击按钮多次提交,所以希望点击按钮后禁用按钮。 具体实现方法如下: //禁用button $('button').addClass('disabled'); // Disables visually $('button').pro
用户评论