Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 402 Bytes

File metadata and controls

20 lines (15 loc) · 402 Bytes

DOM Structure Back

  • HTML(Hypertext Markup Language) is displayed as nodes in DOM, and all these nodes has composed a tree, which is called the structure of DOM.
<html>
   <head>
   <title>HTML DOM</title>
   </head>
   <body>
   <h1>DOM的结构</h1>
   <p><a href="href">链接</a></p>
   </body>
</html>
  • DOM Structure