要在Angular项目中使用Bootstrap 4模态框,可以按照以下步骤进行设置:
npm install bootstrap jquery --save
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css"
]
在"scripts"数组中添加以下脚本:
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
]
declare var $: any;
@Component({
selector: 'app-your-component',
templateUrl: './your-component.component.html',
styleUrls: ['./your-component.component.css']
})
export class YourComponent implements OnInit {
constructor() { }
ngOnInit() {
$(document).ready(function() {
$('#myModal').modal({ backdrop: 'static', keyboard: false });
});
}
}
这样,你就可以在Angular项目中成功使用Bootstrap 4模态框,并且内容可以流体地显示。