Ajax发布到同一页面上的php无法正常工作

时间:2013-06-09 07:56:26

标签: php javascript ajax

我正在尝试将var从jQuery传递给PHP。

经过研究,我发现最常见的建议是使用Ajax Post执行此操作,并使用PHP存储post var。

我的PHP技能非常好,但我不能对我的JavaScript技能说同样的话。

这就是我正在做的事情,但似乎根本不起作用:

  // jquery libray included etc etc
  <script>
   $.ajax({
      type: "POST",
      url: "http://currentpage.com",
      data: "var=value",
      dataType: string
    });
 </script>
 </head>


<body>

<?php
if($_REQUEST["var"] == "value") {
    echo "var passed and stored";
}
?>

2 个答案:

答案 0 :(得分:6)

<script>
   $.ajax({
      type: "POST",
      url: "index.php",
      data: {var:'value'},
      dataType: 'text',
      success:function(data){
       // Test what is returned from the server
         alert(data);
      }
    });
 </script>

答案 1 :(得分:1)

尝试

<script>
   $.ajax({
      type: "POST",
      url: "http://currentpage.com",
      data: {variablename:'value'},
      dataType: "text", //Available types xml, json, script, html, jsonp, text
      success:function(response){
       //Returned from server
       alert(response);
      }
    });
 </script>