I'm using jQuery Validation Plugin and I want to be able to dynamically add and remove validation from 3 radio button groups.I am able to dynamically add and remove validation from text field input using the sample code below:<script type="text/javascript"> $(document).ready(function(){ //Add Requird Validation $("#inputTextField").rules("add", "required"); //Remove Required Validation $("#inputTextField").rules("remove", "required"); });</script>Is it possible to do the same with radio buttons? 解决方案 The code as you've posted it will work fine. However, rules('add') must come after .validate() and each input must contain a name attribute even if you're not targeting by name.HTML:<form id="myform"> <input type="text" name="field" id="inputTextField" /> <br/></form>jQuery:$(document).ready(function() { $('#myform').validate({ // other options & rules }); // must come afer validate() $("#inputTextField").rules("add", { required: true });});Demo: http://jsfiddle.net/fnKWD/ Is it possible to do the same with radio buttons?Of course, just target them by name or by any other valid jQuery selector.$('input[name="myname"]')HTML:<input type="radio" name="myname" value="0" /><input type="radio" name="myname" value="2" /><input type="radio" name="myname" value="5" />Demo: http://jsfiddle.net/LkJZw/ 这篇关于将jQuery验证规则添加到单选按钮组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 09-01 21:13