我找到了一个使用$ .ajax jQuery进行真实聊天的脚本,但它仅仅依赖我的按摩。例如: 我写信给你:您好,此消息为我刷新。 您写信给我:嘿,要查看您的消息我必须通过单击F5刷新站点,但您不必单击F5。有点不对劲!
我的$ .ajax代码:
$(document).ready(function() {
$("#lupnijto").click(function (e) {
$("#lupnijto").hide();
$("#LoadingImage").show();
var zeszyt_value = 'zeszyt='+ $("#contentText").val(); //build a post data structure
jQuery.ajax ({
type: "POST",
url: "response.php",
dataType: "text",
data: zeszyt_value,
cache: false,
success: function(response) {
$("#responds").prepend(response);
$("#contentText").val('');
$('#contentText').focus();
$("#lupnijto").show();
$("#LoadingImage").hide();
},
error:function (xhr, ajaxOptions, thrownError) {
$("#lupnijto").show();
$("#LoadingImage").hide();
alert(thrownError);
}
});
});
});
我做错了什么?为什么数据只为我刷新?聊天怎么样?我做得对吗?我接受答案。感谢。