1

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

经过研究,我发现最常见的建议是Post使用 Ajax 执行此操作,并使用 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";
}
?>
4

2 回答 2

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>
于 2013-06-09T07:58:34.300 回答
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>
于 2013-06-09T07:58:30.990 回答