1

我一直在使用 Ajax 以及如何从 MYSQL 数据库中获取数据并在不重新加载页面的情况下显示。我已经阅读了很多文章、论坛主题等,每一篇都谈到了显示表格。我只想显示一个值!我需要在完成某件事后更新货币价值以使其上升或下降。

这是我的代码:

api.php

    <?php 
session_start();
include 'db_connect.php';
include 'secure.php';
include 'smile.php';
include 'checks.php'; 
logincheck();     

$username=$_SESSION['username'];


  $result = mysql_query("SELECT * FROM users WHERE username = '$username'");          //query
  $info = mysql_fetch_object($result);                          //fetch result    

  //--------------------------------------------------------------------------
  // 3) echo result as json 
  //--------------------------------------------------------------------------
  echo json_encode($info);

?> 

游戏.php

 <script id="source" language="javascript" type="text/javascript">
  $(function ()           
  {
    //-----------------------------------------------------------------------
    // 2) Send a http request with AJAX http://api.jquery.com/jQuery.ajax/
    //-----------------------------------------------------------------------
    $.ajax({                                      
      url: 'api.php',                  //the script to call to get data          
                                       //for example "id=5&parent=6"
      data: 'json',                //data format      
      context:document.body,success: function(data)          //on recieve of reply
      {
        var id=(<?php echo $info->money ;?>);              //get id
        //--------------------------------------------------------------------
        // 3) Update html content
        //--------------------------------------------------------------------
        $('#output').html("$"+id); //Set output element html
        //recommend reading up on jquery selectors they are awesome 
        // http://api.jquery.com/category/selectors/
      } 
    });
  }); 

  </script>  

该值确实显示,但它不会立即更新,我正在用这个该死的东西扯掉我的头发。如果有人可以帮助我,那就太好了。谢谢。

4

1 回答 1

0

您不想在成功函数中使用 PHP,这就是您的 data 参数的用途。

这一行:

var id=(<?php echo $info->money ;?>);

应该是这样的:

var id=(data[money]); //Check your data variable to see exact organization.
于 2013-08-30T22:02:37.170 回答