因?yàn)檩斎肟蛟谑ソ裹c(diǎn)的時(shí)候,我需要吧輸入框中的數(shù)字轉(zhuǎn)換成帶兩位小數(shù)的,但是改變值之后,bootstrapValidator就不能再次校驗(yàn)了,應(yīng)該怎么辦,看百度試了一種方法賦值之后,讓輸入框獲得焦點(diǎn),但是不管用,而且,其他輸入框也沒法點(diǎn)擊了plotratio: { validators: { notEmpty: { message: '容積率不能為空' }, between:{ min:0, max:100
}, regexp: { regexp: /^(\d+(.\d{1,2})?)$/, message: '保留小數(shù)點(diǎn)后兩位'
}
}
},$(".pointNu").on("blur",function(){ if($(this).val()!=""){
$(this).val(parseFloat($(this).val()).toFixed(2));
}
});
bootstrapValidator不能校驗(yàn)$(this).val(值)
三國紛爭
2018-08-17 20:23:20