bootstrapValidator自定验证方法写法

本文实例为大家分享了bootstrapValidator自定验证方法写法,供大家参考,具体内容如下

rush:js;"> //表单验证 issueInvoiceForm.validation = function(){ $('#issueInvoiceForm').on('init.field.bv',function(e,data) { var $icon = data.element.data('bv.icon'),options = data.bv.getoptions(),// Entire options validators = data.bv.getoptions(data.field).validators; // The field validators if (validators.notEmpty && options.FeedbackIcons && options.FeedbackIcons.required) { $icon.addClass(options.FeedbackIcons.required).show(); } }).bootstrapValidator({ container:'popover',FeedbackIcons: { required: 'glyphicon glyphicon-asterisk requiredStar',valid: 'glyphicon glyphicon-ok',invalid: 'glyphicon glyphicon-remove',validating: 'glyphicon glyphicon-refresh' },fields: { invoiceDate:{validators: {notEmpty: {message: '开票日期不能为空'}}},//开票日期 code:{validators: {notEmpty: {message: '发票编码不能为空'}}},amount:{ validators:{ notEmpty: {message: '发票金额不能为空'},numeric: {message: '发票金额只能输入数字'},callback: { message: '开票金额小于选中金额',callback: function(value,validator) { return false; } }
 }
 },taxRate:{
 validators:{
  notEmpty: {message: '<a href="https://www.jb51.cc/tag/shuilv/" target="_blank" class="keywords">税率</a>不能为空'},numeric: {message: '<a href="https://www.jb51.cc/tag/shuilv/" target="_blank" class="keywords">税率</a>只能<a href="https://www.jb51.cc/tag/shurushuzi/" target="_blank" class="keywords">输入数字</a>'}
 }
 },taxAmount:{
 validators:{
  notEmpty: {message: '税额不能为空'},numeric: {message: '税额只能<a href="https://www.jb51.cc/tag/shurushuzi/" target="_blank" class="keywords">输入数字</a>'}
 }
 },},group:'.validateDiv'

}).on('success.form.bv',issueInvoiceForm.issueInvoiceFormBtn).on('error.form.bv',function(){
$("#issueInvoiceFormBtn").removeAttr("disabled");//将保存按钮去除disabled
$(".has-error:visible:first").find(":input").focus();
});
};

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

相关文章

Bootstrip HTML 查询搜索常用格式模版 &lt;form class=&...
如何在按钮上加红色数字 您可以使用Bootstrap的badge组件来在...
要让两个按钮左右排列,你可以使用 Bootstrap 的网格系统将它...
是的,可以将status设置为布尔类型,这样可以在前端使用复选...
前端工程师一般用的是Bootstrap的框架而不是样式,样式一般自...
起步导入:<linkrel="stylesheet"href="b...