{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

jQuery+bootstrap消息提示框对话框插件

jQuery+bootstrap封装实现的消息提示框对话框插件,有多种样式,具体看演示页面。


js代码

	<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
	<script src="bootstrap-4.0.0-dist/js/bootstrap.js"></script>
	<script src="./js/bs4.pop.js"></script>
	<script>

		function demo_dialog(){

			let dia = bs4pop.dialog({

				title: '对话框标题, 我还能拖拽呢',
				content: '我是对话框内容',

				closeBtn: true,
				backdrop: 'static',
				btns: [
					{label: '确定',	className: 'btn-primary', onClick(cb){}},
					{label: '取消',	className: 'btn-default', onClick(cb){}}
				],
				onShowStart: function(){
					// console.log('onShowStart');
				},
				onShowEnd: function(){
					// console.log('onShowEnd');
				},
				onHideStart: function(){
					// console.log('onHideStart');
				},
				onHideEnd: function(){
					// console.log('onHideEnd');
				},
				onDragStart: function(){
					console.log('onDragStart');
				},
				onDragEnd: function(){
					// console.log('onDragEnd');
				},
				onDrag: function(){
					console.log('onDrag');
				}

			});

			setTimeout(() => {
				// dia.hide()
			}, 2000);

		}

		function demo_alert(){

		}

		setTimeout(() => {
			$('#alert').alert();

			setTimeout(() => {
				$('#alert').alert('close');
			}, 2000);
		}, 2000);

	</script>


在线预览
资源均来自第三方,谨慎下载,前往第三方网站下载


米微资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:jQuery+bootstrap消息提示框对话框插件
喜欢 ()分享 (0)