我正在使用带有 Angular2 的 Foundation 6,并且我有几个 Reveal 模态,需要按顺序打开。我直接从 Zurb 复制了示例,但是当我单击第一个模态中的按钮时,新模态打开并且第一个模态不会关闭。
multipleOpened 的默认值应该是 false,但它们只是在彼此之上打开。
我试过设置data-multiple-opened="false"
和也data-options="multipleOpened:false;"
,但他们仍然在彼此之上打开。
这是我的代码:
<p><a data-open="exampleModal2">Click me for a modal</a></p>
<!-- This is the first modal -->
<div class="reveal" id="exampleModal2" data-reveal data-options="multipleOpened:false;">
<h1>Awesome!</h1>
<p class="lead">I have another modal inside of me!</p>
<a class="button" data-open="exampleModal3">Click me for another modal!</a>
<button class="close-button" data-close aria-label="Close reveal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- This is the nested modal -->
<div class="reveal" id="exampleModal3" data-reveal data-options="multipleOpened:false;">
<h2>ANOTHER MODAL!!!</h2>
<button class="close-button" data-close aria-label="Close reveal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
谁能指出我正确的方向?