bootstrap-validator是一个优秀的验证器,使用中遇到如下问题,总结如下:
1、<button type="submit" name="submit23" class="btn btn-primary">Login</button>
不能有这个name属性。否则会出现如下这个问题:
2、
fields: {
username: {
validators: {
notEmpty: {
message: 'The username is required'
}
}
},
必须严格按照这个格式写,不能丢了validators:
3、参考的某个博客,对此博客引用一下,如看到问题请更正一下,到时候我再把此链接去掉:
http://www.cnblogs.com/huangcong/p/5335376.html
此博客就添加了不能添加的name属性:submit
<button type="submit" name="submit" class="btn btn-primary">Login</button>