本文介绍了图片naturalWidth返回零的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

image naturalWidth返回零...就这样,为什么?

image naturalWidth return zero... that's it, why ?

var newimage = new Image();
newimage.src = 'retouche-hr' + newlinkimage.substring(14,17) + '-a.jpg';
var width = newimage.naturalWidth;
alert (width);

帮助,我不知道为什么!

HELP, i dont know why !

***该路径很好,图像显示出来!

*** that path is good, the image show up !

推荐答案

我猜是因为您不等待图像加载-尝试以下操作:

I'd guess it's because you're not waiting for the image to load - try this:

var newimage = new Image();
newimage.src = 'retouche-hr' + newlinkimage.substring(14,17) + '-a.jpg';
newimage.onload = function()
{
    var width = this.naturalWidth;
    alert(width);
}

这篇关于图片naturalWidth返回零的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-11 07:29