我使用Ajax调用显示数据和更新数据。 Ajax调用运行良好,但它不是一次更新。数据库在服务器中更新。对于UI部分,它不会更新。
使用 Ajax Call
$('#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服务器。但UI没有更新。 IN data.php 我给出了插入数据的插入查询。在 inset_time.php 中,我给出了用于显示数据的select查询。但是为什么它不是在我点击loginbutt的时候。
答案 0 :(得分: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);
}
});
});
});