我正在自定义一些jQuery
插件,但有一条我无法理解的错误消息
var totHistory=0;
var positions = new Array();
$('.someclass').each(function(index){
var tmp = $(this).val();
addHistory({id:tmp});
});
function addHistory(obj)
{
/* Gets called on page load for each comment, and on comment submit */
totHistory++;
positions.push(obj.id);
}
在第一次迭代时.someClass
,我收到了这条消息
Cannot call method 'push' of undefined
有人可以解释为什么吗?