我有以下日期选择器脚本:

<script>
 $(function(){
        $("#to").datepicker();
        $("#from").datepicker().bind("change",function(){
            var minValue = $(this).val();
            minValue = $.datepicker.parseDate("mm/dd/yy", minValue);
            minValue.setDate(minValue.getDate()+1);
            $("#to").datepicker( "option", "minDate", minValue );
        })
    });
</script>

现在dateformat是MM/DD/YY。如何将日期格式更改为YYYY-MM-DD?

最佳答案

使用 dateFormat 选项

 $(function(){
        $("#to").datepicker({ dateFormat: 'yy-mm-dd' });
        $("#from").datepicker({ dateFormat: 'yy-mm-dd' }).bind("change",function(){
            var minValue = $(this).val();
            minValue = $.datepicker.parseDate("yy-mm-dd", minValue);
            minValue.setDate(minValue.getDate()+1);
            $("#to").datepicker( "option", "minDate", minValue );
        })
    });

http://jsfiddle.net/gaby/WArtA/上的演示

关于javascript - 如何在日期选择器中将日期格式(MM/DD/YY)更改为(YYYY-MM-DD),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7500058/

10-10 12:40