$("#mapManagerEditForm").bootstrapValidator("addField","floors",{
validators : {
notEmpty : {
message : '<span style="color: #a94442!important">楼层不能为空</span>'
},
regexp : {
regexp : "(^B[1-9][0-9]*$)|(^[1-9][0-9]*F$)",
message : '<span style="color: #a94442!important">楼层以B开头或者F结尾</span>'
}
}});