How to check validation of IP Address in jquery

前端 未结 9 1773
挽巷
挽巷 2021-01-17 21:39

I need to add IP Validation in my project .Is there any function in jquery or in jquery mobile.So that it will validate the in put field?

Thanks

9条回答
  •  旧巷少年郎
    2021-01-17 22:19

    refer this document IP validation

    here he has used jqueryvalidator.js and explained with example.

     $.validator.addMethod('IP4Checker', function(value) {
                var ip = "^(?:(?:25[0-5]2[0-4][0-9][01]?[0-9][0-9]?)\.){3}" +
                    "(?:25[0-5]2[0-4][0-9][01]?[0-9][0-9]?)$";
                    return value.match(ip);
                }, 'Invalid IP address');
    
                $('#form1').validate({
                    rules: {
                        ip: {
                            required: true,
                            IP4Checker: true
                        }
                    }
                });
    

提交回复
热议问题