我正在尝试为更改所选元素的内容添加动画效果。
就像这里是我改变div内容的代码..
$('.message').html('The product has been deleted.');
我想为此过程添加一个简单的下滑效果。我该怎么做?
答案 0 :(得分:2)
致电$('.message').html('The product has been deleted.').hide().slideDown();
(http://api.jquery.com/slideDown/)
答案 1 :(得分:2)
$('#check').click(function() {
$('.text').html('Here is my text.').hide().slideDown('slow'); // don't forget to hide it first....
});