入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

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

创建时间:2016-01-11 投稿人: 浏览次数:2057

第一种:

$("<img/>") // Make in memory copy of image to avoid css issues

    .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); 


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

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像