2

我正在尝试按顺序执行三个任务:

a) 通过 ajax 将 html-content 加载到隐藏的 div 中。

b) 遍历内容并将元素插入到现有的 div 中。

c)slideDown为每个新添加的 div 添加动画。

当我这样做时,我得到一个无休止的错误循环

未捕获的类型错误:对象# 的属性“未定义”不是函数

这是代码:

for(var step=1;step<=total_steps;step++)
{
 add_target=$('#content');
 add_entry=$('#response_hidden').find('.slide :eq('+ step +')');

 add_entry.hide();
 add_entry.prependTo(add_target);
 add_entry.slideDown("slow");
}

有什么线索吗?使用这个ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js

4

1 回答 1

1

尝试这个

 add_entry=$('#response_hidden').find('.slide:eq('+ step +')');
                                         -----^--- you have extra space here
于 2013-02-18T14:22:25.687 回答