我正在创建一个jquery动画,奇怪的是,当我添加一个新的段落时,它会将它附加两次,问题只发生在附加了2个前面的段落时,可能这是一个jQuery bug …否则,我希望有人可以帮助我.
HTML:
JavaScript的:
$(function() {
animation();
});
function animation()
{
$('
问题是“第3段”附加了两次!
您可以在此处运行代码:
http://jsfiddle.net/jonah13/QLM2s/
谢谢,
尤尼斯
最佳答案
我不知道为什么其他确定问题的答案被低估了,因为他们发现了问题.
这是修复它的代码.从jQuery docs注意到,从jQuery 1.6开始(我假设你使用的是jsFiddle使用的是1.7.2)你可以使用.promise():
As of jQuery 1.6,the
.promise()
method can be used in conjunction with thedeferred.done()
method to execute a single callback for the animation as a whole when all matching elements have completed their animations.
我已经更新了你的小提琴:
$(function() {
animation();
});
function animation()
{
$('