我正在查看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');
});
我已經把一支鋼筆以及
爲什麼基本的HTML沒有工作?它應該觸發點擊與document.ready權利? – Abhilash
雖然這個作品,我認爲這感覺像一個黑客。 – Abhilash