在 Javascript 图像操作领域,获取图像的真实宽度和高度可能会带来挑战,特别是在 Safari 和 Chrome 等 Webkit 浏览器中。
在 Firefox 3、IE7 和 Opera 9 中使用 jQuery 时,以下代码片段可以有效提取实际图像尺寸:
var pic = $("img"); pic.removeAttr("width"); pic.removeAttr("height"); var pic_real_width = pic.width(); var pic_real_height = pic.height();
但是,在 Webkit 浏览器中,这种方法会产生不正确的结果值为 0。
解决方案关键在于利用图像元素的onload事件。下面修改后的代码可以实现此目的:
var img = $("img")[0]; // Get the image element $("<img/>") // Make a virtual copy of the image to prevent CSS interference .attr("src", $(img).attr("src")) .load(function() { pic_real_width = this.width; pic_real_height = this.height; });
通过创建图像的内存副本并在加载事件中使用 this 关键字,我们绕过了任何可能改变图像尺寸的潜在 CSS 效果。
为了与 HTML5 浏览器兼容,您还可以利用 naturalHeight 和 naturalWidth属性:
var pic_real_width = img.naturalWidth; var pic_real_height = img.naturalHeight;
以上是如何在WebKit浏览器(Safari和Chrome)中准确检索图像尺寸?的详细内容。更多信息请关注PHP中文网其他相关文章!