淡入、淡出回调

发布于 2024-11-15 23:20:51 字数 438 浏览 5 评论 0原文

我正在尝试制作一个简单的 Jquery 脚本,该脚本将淡出类为“内容”的所有 div。然后淡入通过 div 变量传递的 div。它的工作原理是,当单击按钮时,它会淡出并淡入正确的 div。然而,回调似乎不起作用 - 即淡入与淡出同时发生。这段代码有什么问题吗?我浏览了 Jquery 教程和其他内容,但不明白为什么回调不起作用。干杯

$(document).ready(function() {

    $(".buttons").click(function(event) {

        var div = this.name;

        $("#" + div).siblings(".content").fadeOut(1000, function() {

            $("#" + div).fadeIn(1000);

        });
    });
});

I'm trying to make a simple Jquery script that will fade out all divs where the class is 'content'. And then afterwards fade in the div that is passed through the div variable. It works, in the sense that it fades out and fades in the correct divs when a button is clicked. However it seems like the callback is not working - i.e. the fadeIn occurs at the same time as the fadeOut. Whats wrong with this code? I've looked through the Jquery tutorials and stuff but can't see why the callback won't work. Cheers

$(document).ready(function() {

    $(".buttons").click(function(event) {

        var div = this.name;

        $("#" + div).siblings(".content").fadeOut(1000, function() {

            $("#" + div).fadeIn(1000);

        });
    });
});

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

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

发布评论

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

评论(1

尐籹人 2024-11-22 23:20:51

尝试:

$("#"+div).siblings(".content").fadeOut(1000).fadeIn(1000);

Try:

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