jquery帖子没有调用php

时间:2012-08-05 00:44:15

标签: php jquery

我正在尝试在用户登录服务器时从浏览器发送变量。 我无法实现这一目标......

php代码:

<?php
echo "test";
  $email = $_REQUEST['email'] ;

  echo $email;
?>

html页面:

<html>
  <head>
     <title>Demo</title>
       <script src="http://code.jquery.com/jquery-latest.js"></script>
  </head>
  <body>

  <script>

           alert("test");

$.post("receiver.php", { email: "John", message: "2pm" } )s;


</script>

 </body>
</html>
你能告诉我我错过的东西吗?看起来我错过了一些非常基本的东西.. php文件中的echo test也没有打印

1 个答案:

答案 0 :(得分:0)

你需要定义一个处理php返回的函数的函数(你也有像@tigrang那样的轻微语法错误)。试试这个:

$.post("receiver.php", { email: "John", message: "2pm" }, function(data){ console.log(data);});