我从 javascript 2 值发送到 php。
function sendValue(str,str2){
$.post("/phpfolder/updaterate.php",{ sendValue: str, sendValue2 : str2 },
function(data){
$('#display').html(data.returnValue);
}, "json");
}
我的 php 文件执行....
我想发回一个变量 $x
<?php
...
echo json_encode($x);
?>
我在哪里和我想念什么?我搜索了示例,但没有...