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.
怪我咯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.
某草草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;
}