jquery:添加效果以更改所选元素的内容

发布于 2024-10-17 18:03:05 字数 169 浏览 6 评论 0原文

我正在尝试添加动画效果来更改所选元素的内容。

就像这是我更改 div 内容的代码..

$('.message').html('The product has been deleted.');

我想为此过程添加一个简单的下滑效果。我该怎么做?

I am trying to add an animation effect to changing contents of a selected element.

Like here's my code to change contents of a div..

$('.message').html('The product has been deleted.');

I want to add a simple slide down effect to this process. How should I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

巨坚强 2024-10-24 18:03:05
$('#check').click(function() {

    $('.text').html('Here is my text.').hide().slideDown('slow'); // don't forget to hide it first....

});

演示

$('#check').click(function() {

    $('.text').html('Here is my text.').hide().slideDown('slow'); // don't forget to hide it first....

});

demo

倾`听者〃 2024-10-24 18:03:05

只需调用 $('.message').html('该产品已被删除。').hide().slideDown();
(http://api.jquery.com/slideDown/)

Just call $('.message').html('The product has been deleted.').hide().slideDown();
(http://api.jquery.com/slideDown/)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文