gpt4 book ai didi

html - 如何在 Angular 中添加 bootstrap 5 模态

转载 作者:行者123 更新时间:2023-12-05 01:29:00 25 4
gpt4 key购买 nike

我在 index.html 中包含了 bootstrap 5

<link href="assets/css/bootstrap.min.css" rel="stylesheet" media="screen">

我厌倦了使用 Bootstrap 文档中的示例代码,在我的 Angular 页面中,它不起作用。

可能是什么原因,是否有另一种在 Angular 页面内使用模态的方法?

最佳答案

2021 年完美运行,

使用 npm install --save bootstrap 安装 Bootstrap

angular.json 文件中设置引导 css 和 js 的路径

在 component.ts 文件中

import * as bootstrap from 'bootstrap';

modalName: bootstrap.Modal | undefined
save(){
this.testModal?.toggle()
}
openModal(element){
this.testModal = new bootstrap.Modal(element,{} )
this.testModal?.show()
}

在 component.html 文件中

<button class="btn btn-primary" (click)="openModal(testModal)">Add dish</button>

<div class="modal" tabindex="-1" #testModal id="testModal"> ...</div>

关于html - 如何在 Angular 中添加 bootstrap 5 模态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68095980/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com