由 Jquery 更新的动画文本
很抱歉问这个简单的问题 - 似乎无法弄清楚我做错了什么。
我
$("div." + slot).html("<img width=\"64\" class=\"square\" src=\"" + data.newimg + " \">", function() {
$("div." + slot).fadeIn(2000); });
希望这个回调函数() 能够为我正在使用新 HTML 更新的 DIV 进行动画处理(添加图像)。它似乎没有做任何事情...
提前致谢。
----更新-----
这不应该起作用吗?
$("div." + slot)
.html("<img width=\"64\" class=\"square\" src=\"" + data.newimg + " \">")
.fadeIn(5000);
我也尝试过:
$("div." + slot)
.html("<img width=\"64\" class=\"square\" src=\"" + data.newimg + " \">")
$("div." + slot + " img").fadeIn(5000);
似乎都没有产生任何淡出效果......
Sorry for the simple question - can't seem to figure out what I'm doing wrong.
I have
$("div." + slot).html("<img width=\"64\" class=\"square\" src=\"" + data.newimg + " \">", function() {
$("div." + slot).fadeIn(2000); });
I would expect this callback function() to animate my DIV that I'm updating with new HTML (adding the image). It doesn't seem to do anything...
Thanks in advance.
----UPDATE-----
Shouldn't this work?
$("div." + slot)
.html("<img width=\"64\" class=\"square\" src=\"" + data.newimg + " \">")
.fadeIn(5000);
I also tried:
$("div." + slot)
.html("<img width=\"64\" class=\"square\" src=\"" + data.newimg + " \">")
$("div." + slot + " img").fadeIn(5000);
Neither seem to give any fade in effect...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
.html() 没有回调函数,
像这样使用它
或
.html() has no callback function
use it like this
or