欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jquery 获取图片真实大小的两种方法

程序员文章站 2024-03-18 18:50:46
...
//第一种:

$("<img/>") // Make in memory copy of image to avoid css issues  在内存中创建一个img标记
    .attr("src", $(''#imgid").attr("src"))
    .load(function() {
        pic_real_width = this.width;   // Note: $(this).width() will not
        pic_real_height = this.height; // work for in memory images.
    });

//第二种:

var theImage = new Image(); 
theImage.src = $(''#imgid").attr( "src"); 
alert( "Width: " + theImage.width); 
alert( "Height: " + theImage.height); 

//第一种要安全性要高些,保证是在图片加载完成后在获取。