未捕获的TypeError:undefined不是函数' appendTo'

时间:2014-04-24 10:08:12

标签: javascript jquery

This is my page.

我得到了一个错误

  

未捕获的TypeError:undefined不是函数' appendTo'

我不知道发生了什么事。

出现错误
$('#img-wrapper-tmpl').tmpl( {itemsCount : itemsCount} ).appendTo($rgGallery);

你能帮忙吗?

感谢advence。

3 个答案:

答案 0 :(得分:5)

您的页面中没有#img-wrapper-tmpl元素,这就是您的选择器返回null或空数组的原因,并且基于此错误。

答案 1 :(得分:0)

$rgGallery.append($('#img-wrapper-tmpl').tmpl( {itemsCount : itemsCount} ));

答案 2 :(得分:-1)

我相信您错过了.tmpl()函数的参数。

$.tmpl( template, {itemsCounts : itemsCount}).appendTo($rgGallery); 

$.tmpl($('#img-wrapper-tmpl'), {itemsCounts : itemsCount}).appendTo($rgGallery);

其中template是一个变量,其中包含要呈现的内容的HTML标记。根据您的代码,您使用this plugin.

回复:你还应该指定$('#img-wrapper-tmpl')