如何使用jquery向用户显示弹出通知?

时间:2011-06-28 09:49:59

标签: javascript jquery jsf-2

我正在开发一个应用程序,要求必须通知用户某些背景事件,即来自其他用户的邀请,提醒超时等。

每当事件发生时,控制台都会收到通知,并且应该向用户显示一个小窗口。

我应该如何继续实现这一目标。哪种技术/工具对我有帮助。我正在使用jQuery,JSF 2.0和Spring 3.0。

4 个答案:

答案 0 :(得分:23)

这将发出类似于stackoverflow的通知

<强>的jQuery

$("#notification").fadeIn("slow").append('your message');
$(".dismiss").click(function(){
       $("#notification").fadeOut("slow");
});

<强> HTML

<div id="notification" style="display: none;">
  <span class="dismiss"><a title="dismiss this notification">x</a></span>
</div>

<强> CSS

#notification {
    position:fixed;
    top:0px;
    width:100%;
    z-index:105;
    text-align:center;
    font-weight:normal;
    font-size:14px;
    font-weight:bold;
    color:white;
    background-color:#FF7800;
    padding:5px;
}
#notification span.dismiss {
    border:2px solid #FFF;
    padding:0 5px;
    cursor:pointer;
    float:right;
    margin-right:10px;
}
#notification a {
    color:white;
    text-decoration:none;
    font-weight:bold
}

另请参阅mplungjan's answer了解如何收听服务器更新和消息加载

答案 1 :(得分:2)

使用@Anu's suggestion - my fiddle中的代码,您只需添加投票

即可
$(document).ready(function() {
  $(".dismiss").click(function(){$("#notification").fadeOut("slow");});

  setInterval(function() {
    $.get("ping.jsp?userid=<%= userID %>",function(message) {
      if (message) $("#notification").fadeIn("slow").html(message);
    });
   ,10000);
})

该消息可以包含一个时间戳,以查看您是否先前已通知,而不是在不需要通知的情况下发送空消息

备选方案:Long pollComet

答案 2 :(得分:1)

您正在寻找

Jquery ui对话框。它会派上用场。虽然有很多其他插件可用。这是最简单的..

答案 3 :(得分:1)

<强> HTML:

<input type="button" id="pop" value="Submit"/>
<div id="popup">
  <div id="topbar"> TITLE..</div>
  <div id="content">Here is you content...</div>
  <input type="button" id="ok" value="OK"/>
</div>

<强> CSS:

#popup { background:#ccc; -moz-border-radius: 10px; width:300px; height: 200px; padding: 5px; position: absolute; left: 50%; margin-left: -150px; z-index: 500; display:none }
#topbar { background:#ddd; -moz-border-radius: 10px; padding:5px; height:20px; line-height:20px }
#content { padding:5px; -moz-border-radius: 10px; text-align:center }
#ok { position: absolute; left: 140px; top: 180px }

<强> JQUERY:

$(function(){
    $('#pop').click(function(){
        $('#popup').fadeIn().css('top',$(document).height()/2);
    });
    $('#ok').click(function(){
        $('#popup').fadeOut();
    });
});