模态弹框,通过在jquery对象上调用modal(method),(例如: $('#modal').modal('show'))来控制模态框。
模态框支持的method有:
config 修改模态弹框配置,可以传入点击确定或取消的回调。$el.modal('config', {succ: func, fail: func}) 在回调中会将模态框的dom对象做为参数传入,可以在dom中查找表单元素,获取表单的值。
show 手动控制显示弹框。$el.modal('show')
hide 手动控制隐藏弹框。$el.modal('hide')
code:
js
<script>
$('.modal').modal('config', {
confirm: function(el) {
console.log('confirm', el);
},
cancel: function (el) {
console.log('cancel', el);
}
});
$('.show-modal').on('click', function () {
$('#modal').modal('show');
});
</script>