我正在使用Symfony并尝试使用JavaScript从DateTimeType
元素获取日期值:
var date1 = document.getElementById('debut').value;
alert(date1);
<div class="form-group">
<label for="inputPassword3" class="col-sm-2 control-label">Date DE debut</label>
<div class="col-sm-6">
{{ form_widget(form.datedebut,{'id':'debut'}) }}
</div>
</div>`
答案 0 :(得分:0)
您可以在表单构建器中使用这样的方法并添加JS datepicker
use Symfony\Component\Form\Extension\Core\Type\DateType;
// ...
$builder->add('date_created', DateType::class, array(
'widget' => 'single_text',
// this is actually the default format for single_text
'format' => 'yyyy-MM-dd',
));
或参考此链接http://symfony.com/doc/current/reference/forms/types/birthday.html