由于 cake3 使用的是基础框架,我该如何使用显示 moadl 功能?
我尝试简单地将其复制并粘贴到我的视图中:
<p><a data-open="exampleModal1">Click me for a modal</a></p>
<div class="reveal" id="exampleModal1" data-reveal>
<h1>Awesome. I Have It.</h1>
<p class="lead">Your couch. It is mine.</p>
<p>I'm a cool paragraph that lives inside of an even cooler modal. Wins!</p>
<button class="close-button" data-close aria-label="Close reveal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
但是当我测试它时,我没有收到任何错误,而且 div 是可见的而不是隐藏的,并且“点击我查看模式”也没有任何作用。
为了在蛋糕中使用它,我是否需要包含任何其他文件?