作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
如何在 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">×</span>
<span class="sr-only">Close</span>
</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>One fine body…</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');
如果想用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/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!