0
0

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 3 years have passed since last update.

Elementとは??

Posted at

今回は、JSでの要素の取得と書き換えについて学習していきます。

#getElement

index.html
<p id="choice">日時を表示します</p>
  <script>
    'use strict';

  document.getElementById('choice').textContent = new Date();
  </script>

document.getElementById('id')▶ 特定のidをもつ要素を取得する
これで、choiceを取得することができました。
次に、これを書き換えて行きます。

document.getlementById('id').textContent = 書き換えたい文字列
にすることで、書き換えることができます。

スクリーンショット 2021-04-06 11.03.49.png

#elementオブジェクトとは??
HTMLの中にある要素を内包したオブジェクトのことです。
いくつかありますが、id,classname,innerHTML,clientHeight,childNodesなどがあります。
Element ▶ HTMLにおける要素(タグ)になります。

その他にも、createElementでは、HTMのタグを生成することもできます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?