我有Angular 的应用程序。我想打开一个引导弹出模式时,用户点击页脚中的链接。下面是my Bootstrap modal code。
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter">
Launch demo modal
</button>
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
下面是footer.component.html
文件
<footer class="text-center text-lg-start bg-light text-muted fixed-bottom">
<div class="text-center p-2" style="background-color: gray;">
Copyright 2001-2022. All rights reserved. For internal use only.
<a class="text-reset" data-toggle="collapse"
[attr.data-target]="'#exampleModalCenter'">Terms of Use | </a>
<a class="text-reset" href="https://mdbootstrap.com/">Privacy Statement</a>
</div>
</footer>
我需要把模态代码放在footer.component
还是单独的组件中?当用户点击页脚中的锚链接 * 使用条款 * 时,我如何打开它?
我正在使用这些版本:
"bootstrap": "5.2",
"@angular/core": "^14.2.0"
2条答案
按热度按时间9o685dep1#
首先,你似乎在使用vanilla javascript和HTMl的引导库。你应该考虑切换到“Angular powered Bootstrap”(https://ng-bootstrap.github.io/#/),以便利用angular的好处。你将得到相同的组件,但能够在你的angular应用程序中注入不同的模块。
之后,您应该创建一个包含弹出模态代码的新组件。
然后,您可以在页脚组件中注入NgbModal,如下所示:第一个月
然后,您可以使用
const modalRef = this.modalService.open(YourTermsOfUseComponent);
打开模态on按钮单击有关如何从Angular 分量打开模态的详细信息,请访问以下位置:https://ng-bootstrap.github.io/#/components/modal/examples
jutyujz02#
这是我如何修复它,首先添加nb Bootstrap 到您的项目
如果添加
ng bootstrap
时出现错误,请先运行以下命令,然后再尝试以上命令。现在在
footer.component
中添加以下代码在
footer.component.ts
文件中添加以下代码当你点击页脚的 * 使用条款 * 链接,你会得到如下所示的模型弹出窗口在您的屏幕中心.