// 停止按钮 $("#CrawlerTable").delegate(".c-stop","click",function(){ var stopId=$(this).parents("tr").attr("id"); // $(this).parents("tr").children("td:eq(3)").text("STOP"); $.ajax({ type: "POST", xhrFields: { withCredentials: true }, crossDomain: true, url:dataUrl+"/SpyderPlatform/spyderInfo/stop", dataType: "json", data:{ id:stopId }, success:function(data){ if(data.isSuccess){ alert("停止成功"); window.location.reload(); }else{ alert("已经停止或者停止失败"); } } }) })
当我点击停止按钮的时候,每次都是弹出已经停止或者停止失败,但是后台的确收到了data,我这里的if函数是哪里写的不对吗
已经找到问题0.0