我想在添加一些元素时赋予淡入效果,并在删除元素时赋予淡出效果。
所以,我试过这个
$(selector).closest('div').append(<p class="vali">hi this is test</p>).fadeIn();
$('.vali').fadeOut(); //this works because it is appended that is there is element
但是当没有元素并且附加时我可以直接给fadeIn效果而不用先设置它display: none;
并给fadeIn效果