使用JavaScript获取图像的真实宽度和高度?(在 Safari/Chrome 中)
2022-08-30 00:16:03
我正在创建一个jQuery插件。
如何在 Safari 中使用 Javascript 获取真实的图像宽度和高度?
以下内容适用于 Firefox 3、IE7 和 Opera 9:
var pic = $("img")
// need to remove these in of case img-element has set width and height
pic.removeAttr("width");
pic.removeAttr("height");
var pic_real_width = pic.width();
var pic_real_height = pic.height();
但在Webkit浏览器中,Safari和Google Chrome的值为0。