Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
229 views
in Technique[技术] by (71.8m points)

jquery - How to set datepicker formatting with dash or comma?

I am using datapicker and I want to use date format such as "2012-12,12" or "2012.12.12" or "20121212" on input. But this is not working

This is what I tried. [http://jsfiddle.net/gaby/WArtA/]

How do I use format such as dash, comma, or only number ? please help

question from:https://stackoverflow.com/questions/65940656/how-to-set-datepicker-formatting-with-dash-or-comma

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In your example, simply switch the format in line 2 and 3:

 $(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 );
        })
    });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...