// 处理后台传来的Json字符串装换成Json对象
var dataJson = JSON.parse(data); // 此时可以从Json对象中取值
if(dataJson.result == 'ok') {
} else {
}

  

05-08 15:50