我想用兩個按鈕修改這個code,如果我點擊第一個按鈕,該信息應該以紅色顯示,如果我點擊第二個按鈕,它應該顯示綠色的信息。我想在同一個div與延遲在同一個div中顯示具有不同顏色的消息並延遲?
function showAlertBarMessages(type) {
var msg = msgQueue[0];
if (!$('#msg-sequentially').find(':visible').length) {
var el = $('<div />').html(msg).addClass('msg').appendTo('#msg-sequentially');
el.fadeIn(500).promise().done(function() {
$(this).delay(2000).fadeOut().promise().done(function() {
$(this).remove();
msgQueue.splice(0,1);
if(msgQueue.length) showAlertBarMessages(type);
});
});
}
}
謝謝
詳細更具體的您的需要。 –