jquery中获取图片真实大小的方法:1、方法一【.attr(“src”, $(”#imgid”).attr(“src”))】;2、方法二【theImage.src = $(”#imgid”).attr( “src”);】。
本教程操作环境:windows10系统、jquery2.2.4,本文适用于所有品牌的电脑。
jquery中获取图片真实大小的方法:
第一种:
- $("
") // 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);
登录后复制
第一种要安全性要高些,保证是在图片加载完成后在获取。
相关免费学习推荐:JavaScript(视频)
以上就是jquery中如何获取图片真实大小的详细内容,更多请关注【创想鸟】其它相关文章!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。