2

寻找一种方法来获取外部图像的尺寸(宽度和高度) 。
我使用过prop()and attr(),但它们不返回任何值。只是一个错误。

例子:

<a href="pathtotheimage">some link</a>
4

3 回答 3

8

jQuery

var path = 'https://source.unsplash.com/random/600x300/?montreal';
$("<img/>").attr('src', path).load(function() {
    console.log(this.width, this.height);
 });
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>

香草 Javascript

var path = 'https://source.unsplash.com/random/600x300/?montreal';
var img = new Image();
img.src = path;
img.addEventListener('load', function() {
  console.log(this.width, this.height);
});

于 2012-04-26T17:48:12.157 回答
2

看起来没有人提供一个有效的香草 js 答案。

var img = document.createElement('img')
img.src = 'http://domain.com/img.png'
img.onload = function() {
    console.log( this.width )
    console.log( this.height )
}

这是一个jsfiddle:http: //jsfiddle.net/Ralt/VMfVZ/

于 2012-04-26T18:03:35.347 回答
-1

这在技术上不是 jQuery,但我会走以下路线:

var image = new Image(), width, height;
image.src = 'http://whereyourimage.is/heresmyimage.jpg';
width = image.width;
height = image.height;

然后,您可以使用widthand访问这些值height,例如alert('My image is ' + width + ' pixels accross.');

于 2012-04-26T17:51:58.760 回答