我项目的实时消息

时间:2013-12-01 07:12:52

标签: javascript ajax real-time-updates

$(".update_button").click(function() 
{
  var updateval = $("#update").val();
var dataString = 'update='+ updateval;
if(updateval=='')
{
alertify.alert("Please Enter Some Text!");
}
else
{
$("#flashing").show();
$("#flashing").fadeIn(3000).html('<img src=../images/ajax-loader.gif>');
$.ajax({
type: "POST",
url: "message_ajax.php",
data: dataString,
cache: false,
success: function(html)
{
$("#flashing").fadeOut('slow');
$("#loadcontainer").prepend(html);
$("#update").val('');   
$("#update").focus();

  }
 });
}
return false;
    });

我希望与消息发送者成为朋友的其他用户在上述内容之后获得警报,实际上只在消息发送者页面上附加新帖子而不是他/她的朋友。这比Comet或Long-polling更简单?

0 个答案:

没有答案