我正在使用materialize css,我想添加date picker。我在我的html文件中添加了a
,但是当我想添加
<input type="date" class="datepicker">
到我的控制器,它不起作用,页面只是加载一个基本的日期选择器,而不是预期的。这是我的控制者:
$('.datepicker').pickadate({
selectMonths: true, // Creates a dropdown to control month
selectYears: 15 // Creates a dropdown of 15 years to control year
});
我的linter说:
警告 W117 - &#39; $&#39;没有定义。第19行第9页
但我无法看到问题:( 希望你能帮助我!