如何更改日期范围选择器的日期格式?

时间:2015-09-26 19:17:03

标签: javascript jquery asp.net twitter-bootstrap

我正在使用这个引导日期范围选择器。我想将日期格式日期更改为HashMap<String, String> params = new HashMap<String, String>(); params.put("token", "AbCdEfGh123456"); params.put("search_count", "10"); params.put("order_by", "id");

dd/MMM/yyyy

3 个答案:

答案 0 :(得分:35)

如果要呈现不同的格式,则需要在运行daterangepicker函数后添加区域设置对象。该网站目前没有其支持的所有格式的列表,但请尝试以下方法:

$(function() {
    $("#<%= txtName.ClientID %>").daterangepicker({
        locale: {
            format: 'DD/MMM/YYYY'
        }
    });
});

请点击此处了解更多选项:http://www.daterangepicker.com/#config

答案 1 :(得分:4)

实际上存在与错误日期相关的错误。

Here are the details

更新到最新版本解决了我的语言环境格式错误。

答案 2 :(得分:0)

尝试使用它对我有用

 locale: {
                format: 'YYYY-MM-DD',
                separator: " to "

            },