url = "/plus/API/";
try {
// 此处是可能产生例外的语句
} catch(error) {
// 此处是负责例外处理的语句
} finally {
// 此处是出口语句
}
postData = {k:2}; $.post(url, postData, function(result) { console.log(result);
try {
var str = JSON.parse(result);
} catch(error) {
}
alert(str["0"]["section_name"]);
for(var i in str) {
if(str[i] == 0) {
break;
}
$("#keshi").append(
"<option value='"+str[i]["section_name"]+"'>"+str[i]["section_name"]+"</option>"
);
}
});