fadeOut() 效果在 Firefox 上运行良好,但在 chrome 上不起作用
我有一个项目列表,每个项目旁边都有一个标准的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
$(document).load()
而不是$(document).ready()
use
$(document).load()
instead of$(document).ready()