bootstrap时时提醒填入数据是否与数据库数据重复

standardcode: {
group: '.col-sm-4',//对应前台input的class占用宽度
validators: {
notEmpty: {
message: '请输入标准代号!'
},
remote : {
url : $.el.Register.AppUrl
+ "nygg/selectBySTANDARDCODE",
message : "此标准代号已存在",
type : "POST",
dataType : 'json',
data : {
standardcode : $("#addSTANDARDCODE").val()
},
delay : 500,
}
}
}

原文地址:https://www.cnblogs.com/sky-zky/p/7381063.html