<html> <head> <title>JavaScript基础</title> </head> <body> <p>一.用document对象获取页面标题</p> <hr /> <p>二.用ducument访问以下两个表单</p> <p>第一个,文本框的值</p> <form name="textform"> <input name="textname" type="text" value="请输入文本" /> </form> <p>第二个,按钮的值 </p> <form name="submitform"> <input type="submit" name="submitname" value="第一个表单内的提交"> </form> <hr/> <p>下面是获取到的值:</p> <table border="1" cellspacing="4" cellpadding="2"> <tr> <td>获取到的本页标题是:</td> <td><b><script>document.write(document.forms.length)</script></b></td> </tr> <tr> <td>本页包含的表单:</td> <td><b><script>document.write(document.forms.length)</script></b></td> <tr> <tr> <td>获取到的文本框的值是:</td> <td><b><script>document.write(window.document.textform.textname.value)</script></b></td> <tr> <td>获取到按钮的值是</td> <td><b><script>document.write(document.submitform.submitname.value)</script></b></td> </tr> </table> </body> </html>
还算是比较全面的一段代码,非常基础