var foto = 'htp://midomain.com/folder/pic.jpg';
var img = new Image();
$(img).attr({'src': foto, 'width':'100', 'height': '100'})
.load(function(){
$(this).hide();
$(this).fadeIn('slow');
})
.click(function(){
var ancho = 0;
var img2 = new Image();
$(img2)
.attr('src', $(this).attr('src'))
.load(function(){
$(this).hide();
$(this).fadeIn('slow');
ancho = $(this).width();
$(img2).attr({'width': $(this).width(), 'height': $(this).height()});
});
$('body').appendTo(img);
console.log(ancho); //0
console.log($(img2).attr('width')); //undefined
//get width img2 :(
alguien puede obtener el valor de 宽度和高度
有人可以帮助我,我需要获取元素 img2 的宽度
编辑:我需要图片的原始宽度谢谢