Json string:
"{"detail":{"01":0,"02":0,"03":0,"04":0,"05":"-","06":"-","07":"-","08":"-","09":"-","10":"-","11":"-","12":"-"}}"
jQuery.parseJSON result:
{detail:{10:"-", 11:"-", 12:"-", '01':0, '02':0, '03':0, '04':0, '05':"-", '06':"-", '07':"-", '08':"-", '09':"-"}}
I do not know why parseJSON changes the order of keys (10, 11, 12, 01, 02,... instead of 01,02,03,...). How can I keep the order in this case?