您的位置:首页 > 其它

document对象的集合属性

2016-11-28 13:54 246 查看
<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>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: