【发布时间】:2017-02-24 03:08:23
【问题描述】:
我正在查看 materializecss 的文档。但是模态似乎不起作用。我只是使用了文档中的代码http://materializecss.com/modals.html
HTML
<!-- Modal Trigger -->
<a class="waves-effect waves-light btn" href="#modal1">Modal</a>
<!-- Modal Structure -->
<div id="modal1" class="modal">
<div class="modal-content">
<h4>Modal Header</h4>
<p>A bunch of text</p>
</div>
<div class="modal-footer">
<a href="#!" class=" modal-action modal-close waves-effect waves-green btn-flat">Agree</a>
</div>
</div>
JS
$(document).ready(function(){
// the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered
$('#modal1').modal('open');
});
我也放了一支笔
【问题讨论】: