我試圖存儲div的內容,暫時顯示一個感謝消息,然後放回div的原始內容。對於一些(可能是很多)原因,這是失敗的,我不明白爲什麼。我做錯了什麼?jquery淡出,淡入淡出,等待,淡入淡出
$('#btn').on('click', function() {
//store original content
//appears to be a text string, rather than a jquery object
var content = $('#container').html();
console.log(content);
$('#container').children().fadeOut(800, function() {
$('#container').html('<div id="thanks">Thanks!</div>', function() {
$('#thanks').fadeIn(800, function() {
var t=setTimeout(function(){$('#container').html(content)},3000)
});
});
});
});
什麼是失敗,你得到什麼錯誤消息? –