Materialize CSS - Select Doesn't Seem to Render

前端 未结 14 1174
独厮守ぢ
独厮守ぢ 2020-11-29 20:32

I am currently working with materialize CSS and it seems I\'ve gotten snagged with the select fields.

I\'m using the example provided from their site but unfortunate

14条回答
  •  再見小時候
    2020-11-29 21:12

    Because they override the browser default, the select styling needs Javascript to run. You need to include the Materialize Javascript file, and then call

    $(document).ready(function() {
        $('select').material_select();
    });
    

    after you've loaded that file.

提交回复
热议问题