我想追加一个类。只有在确保元素被完全删除后才会出现。我怎样才能实现这个目标?
<html>
<body>
<div id="Append"></div>
</body>
</html>
$(function(){
$(".Appear").stop().fadeOut("fast",function(){
$(this).remove();
alert(123);
})
$("#Append").append("<span class='Appear'>Appear</span>"); alert(8);
})
答案 0 :(得分:2)
$(".Appear").stop(true,true).fadeOut("slow",function(){
$(this).remove();
alert(123);
$("#Append").append("<span class='Appear'>Appear</span>");
});
答案 1 :(得分:1)
你可以这样做:
var $appear = $("<span class='Appear'>Appear</span>")
$("#Append").append($appear)
$appear.fadeOut("fast",function(){$(this).remove();});