我正在创建show并隐藏在select上。为了刷新验证器,我删除div类并再次加载它。在第一次选择时,它工作正常,但在第二次选择验证器没有加载css属性。只有在没有css属性的情况下加载验证器:
我的代码:
function getOtherQual(id)
{
document.getElementById('other_div1').value = "";
var qualId = id;
if(qualId.localeCompare("Other")!=0)
{
$("#other_div1").hide();
$("#other_div1").css("display","none");
$("#other_div1").removeClass('has-error')
var $feedback = this.$("#other_div1").find('.form-control-feedback')
$feedback.removeClass('glyphicon-warning-sign').removeClass('glyphicon-remove')
$("#other_div1").removeClass('has-success')
var $feedback = this.$("#other_div1").find('.form-control-feedback')
$feedback.removeClass('glyphicon-warning-sign').removeClass('glyphicon-ok')
$("#qualification_other").val("");
}
else{
$("#other_div1").css("display","block");
$("#other_div1").show();
}
}