我正在使用这个 jquery javascript 函数来显示状态消息,
function topBar(message) {
$("<div />", { 'class': 'topbar', text: message }).hide().prependTo("body")
.slideDown('fast').delay(4000).slideUp(function() { $(this).remove(); });
}
和我的CSS:
.topbar {
background: #476275;
border-bottom: solid 2px #EEE;
padding: 3px 0;
text-align: center;
color: white;
font-family:Arial,Helvetica,sans-serif;
font-size:135%;
font-weight:bold;
}
我收到了我的状态消息,但它在正文标签中插入了一个 div,而不是我希望消息显示在正文(z 索引)之外,就像 twitter 一样(即)只是从顶部流出我的消息并隐藏它.. .任何建议..希望你得到我的问题..