- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
function setOptionText(the_select1, the_array1, the_select2, the_array2)
{
the_select1.options.length=the_array1.length;
for (loop=0; loop < the_array1.length; loop++)
{
the_select1.options[loop].text = the_array1[loop];
the_select1.options[loop].value = the_array1[loop];
if (loop==0){
the_select1.options[loop].selected=true;
}
}
the_select2.options.length=the_array2.length;
for (loop=0; loop < the_array2.length; loop++)
{
the_select2.options[loop].text = the_array2[loop];
the_select2.options[loop].value = the_array2[loop];
if (loop==0){
the_select2.options[loop].selected=true;
}
}
}
Моему предшественнику, видимо, было лень вызывать два раза одну и ту же функцию, и потому он добавил в неё ещё два параметра и ещё девять строк кода.
guest 14.12.2012 11:10 # 0
wvxvw 14.12.2012 12:52 # +7