jQuery追加一个段落两次

前端之家收集整理的这篇文章主要介绍了jQuery追加一个段落两次前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在创建一个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 the deferred.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()
{
   $('

猜你在找的jQuery相关文章