对话框

项目中使用的对话框插件为jquery-confirm,版本v3.3.4。阅读文档

iframe里面使用同样会遇到跟消息通知一样的问题(不太好看)。

这里把 jquery-confirm.min.cssjquery-confirm.min.js 的引入挪到index.html页面中,iframe的页面里不再引入这些,在iframe里面调用时加上 parent


$('.example-p-1').on('click', function () {
    parent.$.alert({
        title: '嗨',
        content: '这是对用户的简单提示框。',
		buttons: {
			confirm: {
				text: '确认',
				btnClass: 'btn-primary',
				action: function(){
                    parent.$.alert('你点击了确认!');
				}
			},
			cancel: {
				text: '取消',
				action: function () {
                    parent.$.alert('你点击了取消!');
				}
			}
		}
    });
});
0 条评论