gpt4 book ai didi

jQuery 仅在选择特定单选按钮时验证

转载 作者:行者123 更新时间:2023-12-03 22:19:43 25 4
gpt4 key购买 nike

我陷入了某种特定的情况

我有 2 个单选按钮

<input type="radio" value="YES" id="sub" name="sub">Yes
<input type="radio" value="NO" id="sub" name="sub">No

当选择"is"时,我需要验证 1 个文本字段

<input type="text" id="price" name="price" />

我正在使用 jQuery 验证插件

请帮我解决这个问题,谢谢。

最佳答案

您可以设置依赖项验证,如下所示 http://docs.jquery.com/Plugins/Validation/Methods/required#dependency-expression

$('#myForm').validate(rules: {
price: {
required: '#sub[value="YES"]:checked'
}
});

关于jQuery 仅在选择特定单选按钮时验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4676991/

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