bootstrap 4模态窗口增强插件
源码介绍
simple-bs-dialog.js是一款bootstrap 4模态窗口增强插件。通过该插件,使用bootstrap4模态窗口会更加简单方便,功能更强大。 在HTML文件中引入。 创建一个基本的模态窗口。 带Loading的模态窗口。 自定义确定和取消按钮。 所有可用的配置项。 回调函数。 可用方法。 imple-bs-dialog.js bootstrap 4模态窗口增强插件的github网址为:https://github.com/wraplr/simple-bs-dialog简要教程
使用方法
初始化插件
SimpleBsDialog.show({
title: 'Modal Title',
html: 'Modal Content Here'
});
SimpleBsDialog.show({
title: 'Modal Title',
spinner: true,
spinnerIcon: '',
onShown: function(dialogRef) {
setTimeout(function() {
dialogRef.set({
'spinner': false,
}).getModalBody().html('Your content goes here...');
dialogRef.getButtons().prop('disabled', false);
}, 1000);
}
});
SimpleBsDialog.show({
buttons: [{
id: 'btn-ok',
label: 'OK',
cssClass: 'btn-primary',
action: function(dialogRef) {
console.log('OK button pressed!');
dialogRef.close();
},
},{
id: 'btn-cancel',
label: 'Cancel',
cssClass: 'btn-warning',
action: function(dialogRef) {
console.log('Cancel button pressed!');
dialogRef.close();
},
}]
});
配置参数
SimpleBsDialog.show({
id: newGuid(),
width: 500,
autoWidth: false,
height: 280,
autoHeight: false,
title: '',
closable: true,
spinner: false,
spinnerIcon: '',
closeByBackdrop: true,
closeByKeyboard: true,
html: '',
cssClass: '', // extra CSS class(es)
buttons: [],
});
API
SimpleBsDialog.show({
onShow: function(dialogRef){},
onShown: function(dialogRef){},
onHide: function(dialogRef){},
onHidden: function(dialogRef){}
});
open(): Opens the modal.
close(): Closes the modal.
get(option): Getter for options.
set(option, value): Setter for a given option.
set(options): Setter for many options.
getModalBody(): Returns the raw modal body.
getButton(id): Returns a button by id as a jQuery object.
getButtons(): Returns all available buttons as jQuery objects.
SimpleBsDialog.version: Returns the current SimpleBsDialog's version.
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » bootstrap 4模态窗口增强插件
发表评论 取消回复