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