我正在开发一个需要验证动态插入到 DOM 的表单的项目。想知道如何正确地做到这一点?
我尝试了以下失败:
$(document).on('formValidation', '#myform', {
fields: {
"first_name": {
validators: {
当前验证格式:
$('#myForm')
.formValidation({
fields: {
"first_name": {
validators: {
notEmpty: {
message: 'Please enter a first name.'
}
}
},