我尝试了我在这里找到的所有解决方案,但没有一个对我有用..
var img = $("#img");
var width, height;
$("<img/>")
.attr("src", $(img).attr("src"))
.load(function() {
width = this.width;
height = this.height;
alert(width + "*" + height) ; // works
});
alert(width + "*" + height) ; // undifined*undifined !! :(
如您所见,我需要使用外部的高度和宽度......
我重复一遍:我尝试了 StackOverFlow 的 6-7 个解决方案!也许我没有把它们做好......无论如何,它们没有工作。
我应该怎么办 ?肿瘤坏死因子。