javascript遍历页面控件
1function CopyData()
2{
3if (document.all.txtCopyNo.value == ""){
4return false;
5}
6
7for (i=0;i< document.all.tags("LABEL").length; i++ )
8{
9document.all.tags("LABEL")[i].innerText="copyed value";
10}
11
12for (i=0;i< document.all.tags("INPUT").length; i++ )
13{
14if(document.all.tags("INPUT")[i].type == "text" && document.all.tags("INPUT")[i].id != "txtCopyNo"){
15document.all.tags("INPUT")[i].value="copyed value";
16}
17}
18for (i=0;i< document.all.tags("textarea").length; i++ )
19{
20document.all.tags("textarea")[i].innerText="copyed value";
21}
22
23for (i=0;i< document.all.tags("select").length; i++ )
24{
25document.all.tags("select")[i].options[0].innerText="copyed value";
26}
27
28}
2{
3if (document.all.txtCopyNo.value == ""){
4return false;
5}
6
7for (i=0;i< document.all.tags("LABEL").length; i++ )
8{
9document.all.tags("LABEL")[i].innerText="copyed value";
10}
11
12for (i=0;i< document.all.tags("INPUT").length; i++ )
13{
14if(document.all.tags("INPUT")[i].type == "text" && document.all.tags("INPUT")[i].id != "txtCopyNo"){
15document.all.tags("INPUT")[i].value="copyed value";
16}
17}
18for (i=0;i< document.all.tags("textarea").length; i++ )
19{
20document.all.tags("textarea")[i].innerText="copyed value";
21}
22
23for (i=0;i< document.all.tags("select").length; i++ )
24{
25document.all.tags("select")[i].options[0].innerText="copyed value";
26}
27
28}