fadeOut() 效果在 Firefox 上运行良好,但在 chrome 上不起作用

发布于 2024-11-08 05:19:11 字数 328 浏览 0 评论 0原文

我有一个项目列表,每个项目旁边都有一个标准的 CRUD。我添加了下面的 js 函数,以便项目在删除时淡出。

该效果在 Firefox 上完美运行,但在 Chrome 上则不然。它确实删除了该项目,但不显示效果。

有人可以帮忙吗?到底是怎么回事?

$(document).ready(function() {
    $('.delete_phone').bind('ajax:success', function() {  
        $(this).closest('tr').fadeOut();  
    });
});

多谢!

I have a list of items with a standard CRUD next to each. I added the js function below for items to fade when deleting.

The effect works perfect on Firefox, but on Chrome it doesn't. It does delete the item, but doesn't show the effect.

Can anyone help? What is going on?

$(document).ready(function() {
    $('.delete_phone').bind('ajax:success', function() {  
        $(this).closest('tr').fadeOut();  
    });
});

Thanks a lot!

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

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

发布评论

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

评论(1

活雷疯 2024-11-15 05:19:12

使用 $(document).load() 而不是 $(document).ready()

use $(document).load() instead of $(document).ready()

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