我在Angular 6中使用jquery-confirm插件,我可以使用静态内容打开警报和对话框:
<button (click)="openConfirm()">Open Confirm</button>
的
openConfirm() {
$.confirm({
title: 'Test',
content: 'It works!'
});
}
现在我想在里面加载一个组件,我想如果我在一个字符串中传递选择器,我会加载它。但它没有。
我认为插件使用jquery html()函数将html添加到确认框中。因为当我尝试这个时:
$.confirm({
title: 'Test',
content: '<app-confirm></app-confirm>'
});
我检查过,插件实际上将选择器添加到html中,但它没有加载组件。