function doit(user)
{
jQuery.ajax({
url:'http://www.xxxxxx.in/index.php',
type:'POST',
data:{id:user},
success:function(data){
if(data == "true")
{
//ileti("success","Done");
}
}
});
}
这是我的 index.php :
$user = $_REQUEST["id"];
为什么价值没有通过?