var opts = $.extend({}, $.ias.defaults, options);
function get_scroll_treshold(pure)
{
el = $(opts.container).find(opts.item).last();
if (el.size() == 0) return 0;
treshold = el.offset().top + el.height();
if (!pure)
treshold += opts.tresholdMargin;
return treshold;
}
你好,這是上面的代碼片段^。我遇到的問題是它拋出這個錯誤:
TypeError: $(opts.container).find(opts.item).last is not a function
我使用https://github.com/webcreate/infinite-ajax-scroll這個插件。我瀏覽了github頁面上列出的問題,似乎沒有提到我遇到的問題。 有什麼意見建議嗎?
是否jQuery的工作,其他地方在網頁上?你是否在使用任何可能會改變'$'對象值的插件? – nbrooks 2012-08-10 05:48:04
沒有價值沒有改變。是的jQuery的作品在頁面周圍工作 – cppit 2012-08-10 05:53:24
我沒有看到'EL'被初始化;像'var el'什麼的! – Vishal 2012-08-10 06:14:16