JQuery validation-select required if checkbox checked

后端 未结 4 577
北荒
北荒 2020-12-05 02:22

using jquery I want to make a selection from a select box required (ie it can\'t be left as the blank default) if a particular checkbox is ticked. My code:

$         


        
4条回答
  •  孤街浪徒
    2020-12-05 03:08

    it should be able to work just like that:

    rules : {
     myDropDown:{required:"#myCheckbox:checked"}
    }
    

提交回复
热议问题