search

Home  >  Q&A  >  body text

angular.js - How to set the angular datepicker to display the time of a certain month when it appears

How to set the datepicker to display the date of a certain month as soon as it appears, such as February 2012, April 2018, etc.

大家讲道理大家讲道理2784 days ago751

reply all(3)I'll reply

  • PHP中文网

    PHP中文网2017-05-15 17:03:26

    Just give a default value in ng-model

    reply
    0
  • 怪我咯

    怪我咯2017-05-15 17:03:26

    Look at whether your component accepts a formatted string or a DATE string, and then assign a value to ng-model.
    Because different date components may receive different values, to avoid the possibility that if you fill in a value, the component cannot recognize it, and then there will be a bug when the date component pops up.

    reply
    0
  • 某草草

    某草草2017-05-15 17:03:26

    Assign default time

    function Format(date,type) 
          { 
            var new_date;
            var year  = date.getFullYear();
            var month = date.getMonth()+1;
            var day   = date.getDate();
    
            if (day>0 && day<10) {
              day = '0'+day;
            }
    
            if (month>0 && month<10) {
              month = '0'+month;
            }
    
            switch(type) {
              case 1:
                new_date  = year+'-'+month+'-'+day;
                break;
              case 2:
                new_date  = year+'-'+month+'-'+(day-6);
                break;
            }
            
            return new_date; 
          }

    reply
    0
  • Cancelreply