在 Safari 和 Chrome 中获取图像的真实尺寸
制作 jQuery 插件时,提取图像的实际宽度和高度至关重要。但是,在 Safari 和 Chrome 等 WebKit 浏览器中使用标准的“width()”和“height()”方法会产生零值。
要解决此问题,建议利用图像的“onload”事件,而不是超时。此技术涉及创建图像的内存副本以避免 CSS 干扰。
var img = $("img")[0]; // Get my img elem var pic_real_width, pic_real_height; $("<img/>") // Make in memory copy of image to avoid css issues .attr("src", $(img).attr("src")) .load(function() { pic_real_width = this.width; // Note: $(this).width() will not pic_real_height = this.height; // work for in memory images. });
或者,也可以利用 HTML5 的“naturalHeight”和“naturalWidth”属性。
以上是如何在 Safari 和 Chrome 中获取图像的真实尺寸?的详细内容。更多信息请关注PHP中文网其他相关文章!