$.ajax({
type: "POST", url: "/index.php", data: data, dataType: "json", success: function(r_msg){ if(r_msg.status==0){ alert("fail"); }else{ alert("ok"); } } });本文共 215 字,大约阅读时间需要 1 分钟。
$.ajax({
type: "POST", url: "/index.php", data: data, dataType: "json", success: function(r_msg){ if(r_msg.status==0){ alert("fail"); }else{ alert("ok"); } } });转载于:https://www.cnblogs.com/jackspider/p/3969802.html