LoginSignup
4
5

More than 5 years have passed since last update.

Bootstrapで日付選択を行う

Last updated at Posted at 2016-02-17

bootstrap-datepicker

WS000001.JPG

js

    $scope.inputDate = Date.now();

html

<script src="~/Scripts/bootstrap-datepicker-1.5.1/locales/bootstrap-datepicker.ja.min.js"></script>
<script src="~/Scripts/bootstrap-datepicker-1.5.1/js/bootstrap-datepicker.min.js"></script>

<input type="text" class="form-inline datepicker" placeholder="入力日" value="{{inputDate | date:'yyyy/MM/dd'}}" />

    <script type="text/javascript">
        $('.datepicker').datepicker({
            language: 'ja'
        })

    </script>

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5