博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取img元素图片的实际尺寸
阅读量:6738 次
发布时间:2019-06-25

本文共 313 字,大约阅读时间需要 1 分钟。

// Get on screen imagevar screenImage = $("#image");// Create new offscreen image to testvar theImage = new Image();theImage.src = screenImage.attr("src");// Get accurate measurements from that.var imageWidth = theImage.width;var imageHeight = theImage.height;

  

转载于:https://www.cnblogs.com/lcyuhe/p/5484105.html

你可能感兴趣的文章