LoginSignup
1
0

More than 5 years have passed since last update.

画像の大きさを取得したい(んだけど、うまくいかない)

Posted at

これだとコンソールには0,0てでて、width/heightが取得できない。
.height(100)とかすると大きさは変わる。

$('.hoge').each(function (i) {
    var image = $(this).find('img');
    var w = image.width();
    var h = image.height();
    console.log(w,h);
  });
});
1
0
4

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0