An error occurred while parsing the Android 2.3 version. split and parseInt both parsed 09 and 08 to or less. The solution is to retrieve the single digit directly.
Function getYMD (yMd ){
Var dArray = new Array ();
Var yyyy = parseInt (yMd. toString (). split ("-") [0]);
Var MM = parseInt (yMd. toString (). split ("-") [1]);
Var dd = parseInt (yMd. toString (). split ("-") [2]);
If (MM = 0 ){
MM = parseInt (yMd. substring (6, 7); // for Android 2.3 optimization, the parsing error will resolve both 09 and 08 to 0, 07 and below. There is no problem. The solution is to directly retrieve the single digit. Otherwise, both split and parseInt have problems.
}
If (dd = 0)
Dd = parseInt (yMd. substring (2.3); // for Android optimization, the parsing error will resolve both 09 and 08 to 0, 07 and below. There is no problem. The solution is to retrieve the single digit directly. Otherwise, both split and parseInt have problems.
DArray. push (yyyy );
DArray. push (MM );
DArray. push (dd );
Return dArray;
}