gpt4 book ai didi

jquery - 如何在 ASP.NET MVC 3 和 JQuery 中基于单选按钮选择验证文本框?

转载 作者:行者123 更新时间:2023-12-01 05:01:16 25 4
gpt4 key购买 nike

我有一个单选按钮,其值为"is"和“否”。如果用户选择"is",则文本框向下滑动。所以必须对其进行验证。如果用户点击“否”,文本框会向上滑动,不需要验证。

我尝试使用 ValidationMessageFor(model => model.TextBoxValue),但我无法提交表单,因为即使文本框向上滑动,它也会验证文本框。

最佳答案

“JQuery.Validate”库可能是一个合理的解决方案。它将允许您根据某些条件验证您的字段。语法相当具有表现力:

$("#SomeFormId form").validate({
rules: {
"YourTextBoxId": {
required: {
depends: function(element) {
return $("#YourCheckBoxId").is(":checked");
}
}
}

// Writing this is notepad, you'll have to look up the syntax if you choose this approach.

关于jquery - 如何在 ASP.NET MVC 3 和 JQuery 中基于单选按钮选择验证文本框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9873315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com