LoginSignup
3
7

More than 3 years have passed since last update.

XML、DOMにおけるノードと要素(エレメント)の違い

Last updated at Posted at 2015-07-18

XML、DOMにおけるノードと要素(エレメント)の違い

  • ノードの方が広い概念
  • ノードには要素ノード、コメントノード、CDATASectionノードなど多数の種類がある
  • 要素とは開始タグから終了タグまでのこと
  • 要素はノードでもある

以下の例でいうと

<foo> This is Text </foo>
  • これはfoo要素(開始タグ・終了タグがあるから)。
  • 「This is Text」はテキストノードであり、foo要素(fooノード)の子である。

参考

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