bootstrap datepicker setDate format dd/mm/yyyy

前端 未结 12 1096
轮回少年
轮回少年 2021-02-03 20:14

I have to set the date in my datepicker in dd/mm/yyyy format. Whet I\'m trying to do, with Javascript is this:

  var year = 2014;
  var month = 5;
  var day = 10         


        
12条回答
  •  眼角桃花
    2021-02-03 20:32

    There is confusing when you are using data picker, for bootstrap datepicker you have to use following code:-

    $( ".datepicker" ).datepicker({
       format: 'yyyy-mm-dd'
    });
    

    and for jquery datepicker following code must be used:-

    $( ".datepicker" ).datepicker({
           dateFormat: 'dd-mm-yy'
        });
    

    So you must be aware which date picker you are using, that is ultimately solve your issue, Hope this hepls you.

提交回复
热议问题