3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

document.getElementsByClassName で要素の幅を取得

Posted at

document.getElementsByClassName で要素の幅を取得するとき、

script.js
const Box = document.getElementsByClassName("box");
const W   = Box.clientWidth;

とすると undefined となり値が取れないので、以下の方法で値を取得

idで取得する場合

script.js
const Box = document.getElementById("box");
const W   = Box.clientWidth;

classで取得する場合

script.js
const Box = document.getElementsByClassName("box");
const W   = Box[0].clientWidth;

HTMLCollection

HTMLCollection は要素群(document 内の順序)の一般的な集合(配列)を表現したインターフェイスで,リストから選択するためのメソッドとプロパティを提供します.
※配列ではないので注意

おわりに

jQurey大好きな僕としては、一つコードを書くたびに「jQueryなら簡単なのに」と度々脳裏をよぎりますが、
そんな事を言っている時代でもない1 みたいなので、ひとつずづ頑張って覚えていこうと思います。
他にも良い方法があれば、是非コメントをください。

参考

HTMLCollection - Web API インターフェイス | MDN

  1. You Don't Need jQuery

3
3
0

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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?