jQuery Validate Plugin: how to validate a dropdown

前端 未结 3 1743
栀梦
栀梦 2021-02-06 15:12

I\'m trying to use the jQuery Validate plugin to validate a dropdown. It validates the rest of my form correctly. But it doesn\'t work on the dropdown.

Here is my jQue

3条回答
  •  情深已故
    2021-02-06 16:05

    $('#campaignForm').validate({
        rules: {
            html_url: {
                min: 1,
            }
        },
        messages: {
            html_url: 'Please select a template',
        }
    });
    

提交回复
热议问题