Bootstrap
Bootstrap相关
怒彬
这个作者很懒,什么都没留下…
展开
-
BootstrapTable 中使用checkbox
BootstrapTable中使用CheckBox,添加checkbox列即可: columns: [{ checkbox: true },checkbox: 默认为false,不显示,为true时显示。获取所以选中的列:var ids = ""; var rows = $('#table').bootstrapTab...原创 2019-12-23 14:55:04 · 6148 阅读 · 1 评论 -
Bootstrap4 无法使用图标
Bootstrap4 无法使用图标原因是,Bootstrap4 与 Bootstrap3不同,已经把图标单独出来一个插件open-iconic,所以还需要引用这个插件: <!-- Bootstrap 4.3.1 --> <link href="~/lib/bootstrap/dist/css/bootstrap.min.css" rel="sty...原创 2019-12-23 14:41:34 · 1235 阅读 · 0 评论 -
bootstrapValidator 隐藏域验证
1,设置excluded配置 $("#formAppointment").bootstrapValidator({ message: '输入值不合法', //excluded:[":hidden",":disabled",":not(visible)"] ,//bootstrapValidator的默认配置 excluded: [":disab...原创 2018-08-03 10:55:16 · 1021 阅读 · 0 评论 -
bootstrapValidator 验证
1,添加相关js和css<script src="~/js/jquery/jquery.min.js"></script><script src="~/js/bootstrap/bootstrap.min.js"></script><link href="~/css/bootstrap.min.css" rel="stylesheet...原创 2018-08-03 10:42:59 · 300 阅读 · 0 评论 -
bootstrapValidator select至少选择一个验证
$("#formAppointment").bootstrapValidator({ message: '输入值不合法', excluded: [":disabled"], feedbackIcons: { valid: 'glyphicon glyphicon-ok', invalid: 'glyp...原创 2018-08-03 11:31:02 · 7216 阅读 · 3 评论 -
bootstrapValidator 动态添加html元素的验证
1,动态添加的元素如果想要验证需要用到addField,为相应增加的元素name添加验证function addValShow() { $("#formAppointment").bootstrapValidator("addField", "department", { validators: { notEmpty: { ...原创 2018-08-03 11:50:40 · 3249 阅读 · 0 评论 -
bootstrapValidator 开始日期与结束日期相互验证
$("#formAppointment").bootstrapValidator({ message: '输入值不合法', excluded: [":disabled"], feedbackIcons: { valid: 'glyphicon glyphicon-ok', invalid: 'g...原创 2018-08-03 14:32:35 · 6010 阅读 · 0 评论 -
bootstrapValidator 动态添加元素,相同name或class的元素值不可相同
$("#formAppointment").bootstrapValidator("addField", "employee", { validators: { notEmpty: { message: '受访人员不能为空' }, callback: { ...原创 2018-08-03 15:56:14 · 1553 阅读 · 0 评论 -
bootstrap4使用bootstrapTable 插件后台无法获取参数
之前用bootstrap3,bootstrapTable 往后台传参数没出现什么问题,最近用bootstrap4却发现后台一直获取不到参数,经搜索查询找到了解决方式,即在初始化时加上contentType,如图...原创 2019-12-20 16:57:24 · 988 阅读 · 0 评论