gpt4 book ai didi

javascript - 在 Meteor 中显示/隐藏模态

转载 作者:搜寻专家 更新时间:2023-10-31 23:32:49 24 4
gpt4 key购买 nike

如何在 Meteor 中显示 Bootstrap 模式?

来自 http://meteorpedia.com/read/Modals我可以读到 meteor 方式是使用模板逻辑来显示/隐藏模态。

我尝试在我的模板中添加模式

<div class="modal fade">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body&hellip;</p>
</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><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->

我有一个变量 showModal 决定是否显示模式。但我不知道如何以编程方式显示/隐藏模式。

最佳答案

给模态添加一个id

<div id="myModal" class="modal fade">

并使用modal()打开模式

$('#myModal').modal('show');

关闭模态

$('#myModal').modal('hide');

Docs


如果想用Meteor方式打开模态

在 JS 中

Session.set('showModal', true); // Show modal
Session.set('showModal', false); // Hide modal

在模板中

{{#if showModal}}
<div class="modal fade"> <!-- Use Display block to show the modal by default -->
...

{{/if}}

关于javascript - 在 Meteor 中显示/隐藏模态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32759403/

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