Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 MVC4 的新手。谁能告诉我如何禁用提交按钮,直到表单没有通过验证
为此 - 您应该进行客户端验证,因为服务器端验证在按下提交按钮后运行。因此,实现您的客户端验证并使用 jQuery 显示/隐藏提交按钮,如下所示:
$(document).ready(function() { if (validate()) { $('#your-submit-button-id').show(); } else { $('#your-submit-button-id').hide(); } });
并使用按键事件实现您的验证(例如)