JQuery Require Checkbox and Radio Button before submit

后端 未结 3 1103
小鲜肉
小鲜肉 2021-01-31 22:29

I am having one heck of a hard time trying to figure this out. Been looking at examples and tools for JQuery validation for over 3 hours now.

All I want to do is require

3条回答
  •  死守一世寂寞
    2021-01-31 23:06

    This worked for me in my case where I want to require users to check a checkbox in order to submit a form.

    $(document).ready(function(){
            $('#yourinput').required = true;
    });
    

提交回复
热议问题