简体   繁体   中英

Javascript: getting the width of an img element

Using Javascript I have been able to select an image element (an HTMLImageElement object, say img1 ) in my html document. I can also get its style using img1.style . However, the following returns a blank alert:

alert(img1.style.width);

whereas this used in the same position works fine:

alert(img1.width);

so I don't think it's a problem with the image not having loaded yet.

I can set the width using either of the two options, though, and I like using the first, of course. But why can't I get the width using the first?

It's not so much the task I want to accomplish that's the issue here (I can do that in the second way); I want to learn what's wrong with the first way.

img1.style.width returns the value of the css-attribute width . If you don't have a css rule that applies a width to that image, the property is an empty string.

These are references to two different ways of setting an <img> width:

  • You can set in in the HTML attributes, through <img width="100px"> for example.
  • You can set it for a style or a class that your <img> will belong to, through CSS.

The first one is accessed through img.width . The second one through img.style.width .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM