日期:2014-05-17  浏览次数:20432 次

聊天室 状态栏提示新消息
聊天室怎么实现 来新消息 状态栏上有提示。比如文字移动。您有新消息。应该是修改TITLE。不知怎么实现。 

------解决方案--------------------
参考:

〈script language=javascript〉
  step=0
  function flash_title()
  {step++
  if (step==3) {step=1}
  if (step==1) {document.title='☆csdn★'}
  if (step==2) {document.title='★床上等你!☆'}
  setTimeout("flash_title()",180);
  }
  flash_title()
  〈/script〉

------解决方案--------------------
ajaxtimer定时查询数据库获取数据
根据返回值设置document.title="";
------解决方案--------------------
ajax 不断到服务器上获取。

document.title = "you have new message."