以下代码包含教育和士气教育的代码。我想在点击按钮时验证教育和道德教育领域。
$('body').on('change', '#education', function(){
if( !$("#education").val() ) {
$(this).closest('.form-group').addClass('has-error');
}else{
$(this).closest('.form-group').removeClass('has-error');
}
});
$('body').on('click', '#update', function(){
if( !$("#education").val() ) {
$(this).closest('.form-group').addClass('has-error');
}else{
$(this).closest('.form-group').removeClass('has-error');
}
});
$('body').on('change', '#moraleducation', function(){
if( !$("#moraleducation").val() ) {
$(this).closest('.form-group').addClass('has-error');
}else{
$(this).closest('.form-group').removeClass('has-error');
}
});
$('body').on('click', '#update', function(){
if( !$("#moraleducation").val() ) {
$(this).closest('.form-group').addClass('has-error');
}else{
$(this).closest('.form-group').removeClass('has-error');
}
});
答案 0 :(得分:0)
试试这个
$('body').on('click', '#update', function(){
$(this).closest('.form-group').removeClass('has-error');
if( !$("#moraleducation").val() || !$("#education").val() ) {
$(this).closest('.form-group').addClass('has-error');
}
});