document对象的集合属性

来源:互联网 发布:西安淘宝网 编辑:程序博客网 时间:2024/06/14 00:31


<title>document对象</title> </head><script type="text/javascript"><!-- function fun(){document.all[11].innerHTML = "你好" ;document.forms[1].username.value = "张无忌" ;document.images[2].src = "images/1.jpg" ; }//--></script> <body onload = "fun()">     <P></p> <form method="post" action="">  姓名1:<input type="text" name=""> </form> <form method="post" action="">  姓名2:<input type="text" name="username"> </form> <form method="post" action="">  姓名3:<input type="text" name=""> </form> <img src = "" alt = "aa"><img src = "" alt = "bb"><img src = "" alt = "cc"> </body></html>


0 0
原创粉丝点击