0

在我在服务器上打印数据之后,使用 jquery AJAX 在服务器上发送数据:

php代码:

function someFunc () 
    echo json_encode("some");
}

并在 js 中获取此数据:

$.ajax({
   // here code for send
   success: function (htm) {
            htm = JSON.parse(htm);
            alert(htm);
        }
    });

这行得通,但是当我需要从服务器获取 asnwer 并且停止 php 函数工作后,在 js 中我没有获取数据,也就是说,这不起作用

function someFunc () 
    echo json_encode("some");
    return false;
}

没有return false;作品。请告诉为什么?

4

1 回答 1

1

您应该只 exit() 而不是返回 false。

于 2013-01-09T14:21:47.437 回答