慕莱坞森
PHP端通常是这样回应jQuery的post:1234$response['status'] = 1;$response['message'] = 'worked';echo json_encode($response);exit();这样在post的回调函数中就可以接收到function(data,status)的两个参数了。1234 $.post("xxx.php",jsonData, function(data,status){ alert("Data: " + data + "\nStatus: " + status); });