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.

jQuery 基礎知識 メモ書き

Posted at

#DOMとは?

HTMLの要素にアクセスして、その要素の情報を書き換えたり削除したり、操作するための仕組みのこと。

要素:Document,html,head,bodyなどなど

DOMができあがることで、要素(ノード)間の親子関係や兄弟関係がわかるようになる。

jQueryやjavascriptはDOMは出来上がる前に書くと、エラーになる。
javascriptはオブジェクトを操作する言語。DOMもオブジェクトになる。

#オブジェクトを操作したいとき

オブジェクトのメソッドを操作したい場合

オブジェクト名.メソッド名(引数値);

オブジェクトのプロパティを操作したい場合

オブジェクト名.プロパティ名 = 値;
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?