var smsTypeDesc = {"4":"回访短信","3":"邮件短信","aa":"测试短信"};
alert(key);
}
// 得到键
function EnumaKey(){
for(var key in smsTypeDesc){alert(key);
}
}
//得到值
function GetValByKey(){
alert(smsTypeDesc.aa);
}