jquery中如何获取图片真实大小

jquery中获取图片真实大小的方法:1、方法一【.attr("src", $(\\\’\\\’#imgid").attr("src"))】;2、方法二【theImage.src = $(\\\’\\\’#imgid").attr( "src");】。

 

jquery中获取图片真实大小的方法:

第一种:

$("<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);

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

更多关于云服务器域名注册虚拟主机的问题,请访问西部数码官网:www.west.cn

赞(0)
声明:本网站发布的内容(图片、视频和文字)以原创、转载和分享网络内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-62778877-8306;邮箱:fanjiao@west.cn。本站原创内容未经允许不得转载,或转载时需注明出处:西部数码知识库 » jquery中如何获取图片真实大小

登录

找回密码

注册