4
<div id="message" style="display: none">
 <!-- Here I want to place a message. It should be visible for 3 seconds.Then clear the      div to get ready for the next message. -->
</div>

如何使用 JQuery 执行以下操作?

1.向 id="message" 的 div 中插入一条消息,并使 div 可见。2.使消息可见 3 秒。3.删除div“消息”的内容。4.隐藏 div,如有必要,从步骤 1 开始。

先感谢您。

4

4 回答 4

9

这是我的做法:

$.msg = function(text, style)
{
    style = style || 'notice';           //<== default style if it's not set

    //create message and show it
    $('<div>')
      .attr('class', style)
      .html(text)
      .fadeIn('fast')
      .insertBefore($('#page-content'))  //<== wherever you want it to show
      .animate({opacity: 1.0}, 3000)     //<== wait 3 sec before fading out
      .fadeOut('slow', function()
      {
        $(this).remove();
      });
};

例子:

$.msg('hello world');
$.msg('it worked','success');
$.msg('there was a problem','error');

这个怎么运作

  1. 创建一个 div 元素
  2. 设置样式(因此您可以更改外观)
  3. 设置要显示的 html
  4. 开始在消息中淡出,因此可见
  5. 将消息插入您想要的位置
  6. 等待 3 秒
  7. 淡出消息
  8. 从 DOM 中删除 div —— 没有混乱!

奖励示例消息样式:

.notice, .success, .error {padding:0.8em;margin:0.77em 0.77em 0 0.77em;border-width:2px;border-style:solid;}
.notice {background-color:#FFF6BF;color:#514721;border-color:#FFD324;}
.success {background-color:#E6EFC2;color:#264409;border-color:#C6D880;}
.error {background-color:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
.error a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}

```

于 2009-08-03T16:58:05.187 回答
6

你可以这样做:

var $messageDiv = $('#message'); // get the reference of the div
$messageDiv.show().html('message here'); // show and set the message
setTimeout(function(){ $messageDiv.hide().html('');}, 3000); // 3 seconds later, hide
                                                             // and clear the message
于 2009-08-03T06:06:29.160 回答
1

这是一个小脚本,它以 3 秒的间隔循环显示消息。也许这不是您所需要的,但我希望它可以帮助您实现您想要的。

var messages = [
  "test message 0",
  "test message 1",
  "test message 2",
  "test message 3"
];

$(function() {
  var msgIndex = 0;
  setInterval(function() {
    $msgDiv = $("#message");
    $msgDiv.fadeOut(200, function() {
      $msgDiv.html(messages[msgIndex]).fadeIn(500);
      if(msgIndex >= messages.length)
        msgIndex = msgIndex % messages.length;
    });
  }, 3000);
});
于 2009-08-03T06:52:28.020 回答
0

看看jGrowl。非常好且可配置。

于 2009-08-03T17:14:05.250 回答