0

我使用 Ajax 调用来显示数据和更新数据。Ajax 调用运行良好,但不是一次更新。服务器中的数据库更新良好。对于 UI 部分,它没有更新。

使用Ajax 调用

    $('#loginbutt').click(function(){
        $.post('data.php',{action: "update"},function(res){
        $('#result').html(res);
            });
var servertime = $("#timer1").text();
 var dataString = 'current_time='+ servertime;
                     $.ajax({
                             type: "POST",
                             url: "inset_intime.php",
                             data:dataString ,
                             cache: true,
                             beforeSend: function(html) {
                             document.getElementById("lastfive").innerHTML = ''; 
                            },
                             success: function(html){
                                $("#lastfive").append(html);  
                               }
                      });

        });

它正在更新数据 .php 但不更新 inset_time.php。数据正在插入好 inti 服务器。但用户界面没有更新。在 data.php,我给出了插入数据的插入查询。在inset_time.php 中,我给出了用于显示数据的选择查询。但为什么不是在我点击 loginbutt 的时候。

4

1 回答 1

0

尝试这个

$(document).ready(function(){

$('#loginbutt').live('click',function(){
    $.post('data.php',{action: "update"},function(res){
    $('#result').html(res);
        });
var servertime = $("#timer1").text();
 var dataString = 'current_time='+ servertime;
                 $.ajax({
                         type: "POST",
                         url: "inset_intime.php",
                         data:dataString ,
                         cache: true,
                         beforeSend: function(html) {
                         document.getElementById("lastfive").innerHTML = ''; 
                        },
                         success: function(html){
                            $("#lastfive").append(html);  
                           }
                  });

    });

});
于 2013-09-28T08:00:31.533 回答