解决方法
正如Josh所说,如果图像尚未完全加载,jQuery将不知道什么维度.尝试这样做,以确保您只有在图像完全加载后才尝试访问其尺寸:
var img = new Image(); $(img).load( function() { //-- you can determine the height before adding to the DOM alert("height: " + img.height); //-- or you can add it first... $('body').append(img); //-- and then check alert($('body img').height()); }).error( function() { //-- this will fire if the URL is invalid,or some other loading error occurs alert("DANGER!... DANGER!..."); }); $(img).attr('src',"http://sstatic.net/so/img/logo.png");