一、遍历dom

>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>introduction to the dom</title>
    <script type="text/javascript">
>
</head>
<body>
<h1>介绍dom</h1>
<p class="text">
    这是一个dom的p标签测试
</p>
<ul>
    <li id="everywhere">it can be found everywhere</li>
    <li class="test">it is easy to user.</li>
    <li class="test">it can help you to find what you want, really quickly.</li>
</ul>
 
<div id="div_"></div>
</body>
</html>

相关文章: