此选择(克隆和附加)上的 FadeTo() 不起作用?
我是 jQuery 新手,我想 fadeTo()
这个选择为用户提供有关从服务器获取数据的反馈:
// Loop on each array of object returned from the ajax call
$.each(v, function(i, obj) {
current.find('.key:first').parent()
.clone(true).appendTo(current)
.find('.key').text(obj.key).andSelf();
};
我尝试过(没有成功)添加 fadeIn( 'slow', 1)
在 appendTo(current)
之后调用。
I'm new to jQuery and i'd like to fadeTo()
this selection to give user feedback about data being fetched from the server:
// Loop on each array of object returned from the ajax call
$.each(v, function(i, obj) {
current.find('.key:first').parent()
.clone(true).appendTo(current)
.find('.key').text(obj.key).andSelf();
};
I've tryed (without success) adding fadeIn('slow', 1)
call after appendTo(current)
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我猜测,您的内容直接显示,并且您希望它淡入。
您需要在附加到“当前”元素之前隐藏克隆的元素。试试这个:
From what I'm guessing, your content appears straight up and you wish it'd fade in.
You need to hide the cloned element before appending to the "current" element. Try this :