jquery post回调函数不执行

来源:互联网 发布:平高集团待遇知乎 编辑:程序博客网 时间:2024/05/24 06:27
$.post("changeStatus.do",{'xx':xx},function(data){
     alert(data);

    },"json");

当post参数带有“json”时,若返回结果data为空,进入不了回调函数


0 0