我试图让这个包http://www.bootstrap-year-calendar.com启动并运行。我已经安装了nodeJS,已经使用npm抓取了包,并根据使用说明设置了一个html页面,但我实际上无法让日历呈现。这是我第一次涉足nodejs,所以我怀疑我错过了一些直截了当的东西。关于问题可能是什么的任何想法?
一如既往地谢谢。我的html / js目前看起来像这样:
<html>
<head></head>
<body>
<script src="./jquery/dist/jquery.js"></script>
<script src="./bootstrap/dist/js/bootstrap.js"></script>
<script src="./bootstrap-year-calendar/js/bootstrap-year-calendar.min.js"></script>
<script>
$('.calendar').calendar()
</script>
</body>
</html>