问候,
我想使用滑动 DIV 来显示一些消息,例如“配置文件已更新”。
这是我的代码。当我加载页面并在几秒钟后消散(延迟)时,DIV 会向下滑动。但是我希望能够在超时之前通过链接关闭 DIV,但我无法将 SlideUp 附加到它...为什么?
$("#message").hide();
$("#message").slideToggle('slow', function() {
$(this).delay(2000).slideToggle("slow");
});
$("#close").click(function() {
$("#message").slideUp();
});
});
<div id="message" style="display:none; border: 3px solid #ccc; width: 500px; height: 30px; background: #eee;">
A message goes here! <a id="close" href="#" style="float: right;">Close div</a>
</div>