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