我总是遇到麻烦,我正在使用 AJAX 加载文件:
$.ajax({
url: fullHref,
success : function(result) {
console.log(fullHref+" was loaded via AJAX");
saveImages(result);
}
});
并尝试遍历所有图像result
:
function saveImages(file){
console.log("savesImages enterd");
$(file).find('img').each(function(){
console.log("The file has this image : "+$(this).attr('src'));
});
}
}
我也试过:
$('img',file)
$('img',$(file))
$('img',$(file).html())
然而它并没有进入循环。
有什么建议么?我正在使用 Chrome,我不想使用正则表达式。