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
Add a ment  | 

1 Answer 1

Reset to default 9

You 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