Список элементов управления, список элементов управления, 2 элемента списка, элемент управления js, файл управления файлами, список элементов управления
функция ВыбратьВсе()
{
var lst1=window.document.getElementById("SourceListBox");
длина вар = lst1.options.length;
for(var i=0;i<длина;i++)
{
вар v = lst1.options[i].value;
вар т = lst1.options[i].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[i] = новый вариант (t,v,true,true);
}
}
функция ДелВсе()
{
var lst2=window.document.getElementById("DestinationListBox");
длина вар = lst2.options.length;
for(var i=длина;i>0;i--)
{
lst2.options[i-1].parentNode.removeChild(lst2.options[i-1]);
}
}
функция ВыбратьОдин()
{
var lst1=window.document.getElementById("SourceListBox");
вар lstindex=lst1.selectedIndex;
если (лстиндекс<0)
возвращаться;
var v = lst1.options[lstindex].value;
вар т = lst1.options[lstindex].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[lst2.options.length] = новый вариант (t, v, true, true);
}
функция DelOne()
{
var lst2=window.document.getElementById("DestinationListBox");
вар lstindex=lst2.selectedIndex;
если (лстиндекс>= 0)
{
var v = lst2.options[lstindex].value+";";
lst2.options[lstindex].parentNode.removeChild(lst2.options[lstindex]);
}
}