我一直在构建一个需要国际化工作的应用。在这个应用程序中,我使用Bootstrap Datepicker。我能够使用以下内容成功初始化日期选择器:
NULL
当用户选择日期时,它会正确显示为中文。我的问题是,有时当页面加载时,我需要预先选择日期。如果我希望{6}已经选择使用<input id="myDatePicker" class="form-control input-sm" type="text" autocomplete="off" value="">
$('#myDatePicker').datepicker({
autoclose: true,
clearBtn: true,
language: 'zh-CN',
startDate: '01/01/1900',
todayHighlight: true
});
中文,那么我需要在myDatePicker
元素的value
属性中添加什么值。
由于代码的结构方式,我无法在input
初始化代码中设置该值。我需要在.datepicker
元素的value
属性中设置值。
谢谢
答案 0 :(得分:3)
从文档中说here,可接受以下格式:
"06-01-2012"
让您的HTML看起来像这样:
<input id="myDatePicker" class="form-control input-sm" type="text" autocomplete="off" value="06-01-2015">