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.
我只知道简单的 MVC 验证属性。如果两个 texbox 字段的总和不能大于 100,我该如何进行验证。我相信这可能是一个简单的解决方案。我尝试在我的控制器中编写一些代码,但这变得很乱。
您可以使用客户端 (javascript) 事件进行验证。
例如:
使用 jQuery:
$(function(){ $("#buttonID").on("click", function(event){ if(parseInt($("#txtBox1").val()) + parseInt($("#txtBox2").val()) > 100) { event.preventDefault(); alert("Value should be less than 100."); } }); });