jquery插件validate验证的小例子

2020-05-23 06:20:45易采站长站整理

                    blood:{digits:true}
                },
                errorshow: function (error, element) {
                    error.appendTo(element.siblings(‘span’));
                }


            })


        })
    </script>
</head>


<body>
<form  id=”a”>
<div>
用户名:<input type=”text” name=”username” /><span style=”width:100px”></span>
<br />
邮箱:<input type=”text” name=”email” /><span style=”width:100px”></span>
<br />
密码:<input type=”text” name=”pwd” /><span style=”width:100px” id=”aa”></span>
<br />
确认密码:<input type=”text” name=”again”  /><span style=”width:100px”></span>
<br />
生日:<input type=”text” name=”birthday” /><span style=”width:100px”></span>
<br />
血压:<input type=”text” name=”blood” /><span style=”width:100px”></span>
</div>
</form>
</body>
</html>