我得到了一个错误
未捕获的TypeError:undefined不是函数' appendTo'
我不知道发生了什么事。
出现错误
$('#img-wrapper-tmpl').tmpl( {itemsCount : itemsCount} ).appendTo($rgGallery);
你能帮忙吗?
感谢advence。
答案 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')