分类: jQuery
2015-09-29 17:46:01
jQuery的post方法默认返回类型是html,可选类型(xml、json、script 或 html),如果想返回json数据,必须设置返回类型json。
$.post('user-getcode.html',{phone:phone},function(result){
if(result['status']==1){
$("#code").val(result['msg']);
}
},'json');