我有一些元素可以在文檔中聲明爲可排序。後來在函數中,我使用toArray將它們放入數組中。我想要做的事情是遍歷這個數組,並獲得那些我正在尋找的具有特定元素的元素。我打開數組並使用.find,但它說元素myarray [index]沒有方法查找,所以然後我嘗試myarray.eq(index).find,然後它說他們沒有方法eq。任何幫助,這將不勝感激。我的代碼如下。對象沒有方法eq或找到
var imageBlocks = $(".imageBlocks").sortable("toArray");
images = Array();
for(i = 0; i < imageBlocks.length ; i++)
{
image = imageBlocks.eq(i).find(".post_image");
if(image.length > 0){
images.push(image);
}
}
你的變量是'imageBlocks'不是'$ imageBlocks ' – 2013-02-18 17:50:13
'imageBlocks!== $ imageBlocks' – 2013-02-18 17:50:38