所以这是我的问题,我正在使用 AJAX (jQuery) 将表单发布到,process.php
但页面实际上需要回显一个响应,例如apple
or plum
。我不确定如何从中获取响应process.php
并将其存储为变量...
这是我到目前为止的代码:
<script type="text/javascript">
function returnwasset(){
alert('return sent');
$.ajax({
type: "POST",
url: "process.php",
data: somedata;
success function(){
//echo what the server sent back...
}
});
}
</script>
我还需要process.php
在 json 中回显响应吗?还是纯文本可以吗?
抱歉,如果这听起来像一个愚蠢的问题,这是我第一次在 Ajax 中做类似的事情。
PS:上面代码中的POST请求如何命名?