答案 0 :(得分:1)
img.onload = function() {
$Container = $(self).parents().parents().siblings(".graph_container");
$Container.empty().append(img);
this.find('img').each(function(){
//Dynamically check each image
if(this.height > 400)
{
$(this).height(400);
}
console.log(this); //Should see object with attribs.
})
};
给它一个去告诉我发生了什么,也检查你的控制台日志,看看对象是否是图像元素。