我想要一个像这样calendar的漂亮日历,但是我得到的却像这样calendar not showing。我试图从adminlte中删除dashboard.js,并使用bootstrap datetimepicker进行更改,但仍未显示日历。在dashboard.js(管理员)中,日历代码就是这样
$('#calendar').datepicker({
format: 'L',
inline: true
})
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<input type="date" name="name" id="calendar" class="form-control">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
,仍然无法正常工作。甚至我只是将index.html复制粘贴到我的dashboard.blade.php中,并包括所有仍未显示日历的管理资产。
好的,感谢您的评论,现在它可以正常工作了……我只是从dashboard.js在视图中放入了一个特定的日历脚本。谢谢大家:)