admin管理员组文章数量:1344315
I tried everything but can't get the datepicker to show up.
Bootstrap version v2.3.1.
Latest version of /
HTML:
<div class="input-append date" id="dpMonths" data-date="102/2012" data-date-format="yyyy-mm" data-date-viewmode="years" data-date-minviewmode="months">
<input class="" size="16" type="text" value="2013-03" readonly>
<span class="add-on"><i class="icon-calendar"></i></span>
<script src="js/bootstrap-datepicker.js"></script>
<script type="text/javascript">
$(function() {
$('#dpMonths').datepicker();
});
</script>
Javascript error:
Uncaught TypeError: Cannot read property 'fn' of undefined
Uncaught ReferenceError: $ is not defined
I tried everything but can't get the datepicker to show up.
Bootstrap version v2.3.1.
Latest version of http://www.eyecon.ro/bootstrap-datepicker/
HTML:
<div class="input-append date" id="dpMonths" data-date="102/2012" data-date-format="yyyy-mm" data-date-viewmode="years" data-date-minviewmode="months">
<input class="" size="16" type="text" value="2013-03" readonly>
<span class="add-on"><i class="icon-calendar"></i></span>
<script src="js/bootstrap-datepicker.js"></script>
<script type="text/javascript">
$(function() {
$('#dpMonths').datepicker();
});
</script>
Javascript error:
Uncaught TypeError: Cannot read property 'fn' of undefined
Uncaught ReferenceError: $ is not defined
Share Improve this question asked Mar 25, 2013 at 0:48 JohnJohn 1,2974 gold badges16 silver badges34 bronze badges 1- 4 Are you including jQuery correctly? In what order are you including scripts? – Andrew Whitaker Commented Mar 25, 2013 at 0:53
1 Answer
Reset to default 9You need to have jquery included to get the bootstrap date picker working
<script src="http://code.jquery./jquery-1.9.1.min.js"></script>
<script src="js/bootstrap-datepicker.js"></script>
Also add the CSS file for bootstrap datepicker in the head of your page.
本文标签: javascriptTwitter Bootstrap Datepicker errorStack Overflow
版权声明:本文标题:javascript - Twitter Bootstrap Datepicker error - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743757982a2533856.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论