且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

laravel使用twitter bootstrap和datepicker

更新时间:2022-11-10 18:42:53

使用id初始化datepicker

Use an id to initialize the datepicker

{!! Form::input('date', 'dob', date('d-m-Y'), ['class' => 'form-control', 'id' => 'dob', 'data-date-format' => "dd-mm-yyyy"]) !!}

并使用此javascript

and use this javascript

$('#dob').datepicker();