Il y a une boîte de liste 2, une boîte de liste pour js, une boîte de liste et des js, et des boîtes de liste
fonction SélectionnerTout()
{
var lst1=window.document.getElementById("SourceListBox");
var longueur = lst1.options.length;
pour(var i=0;i<longueur;i++)
{
var v = lst1.options[i].value;
var t = lst1.options[i].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[i] = nouvelle Option(t,v,true,true);
}
}
fonction DelAll()
{
var lst2=window.document.getElementById("DestinationListBox");
var longueur = lst2.options.longueur;
pour(var i=longueur;i>0;i--)
{
lst2.options[i-1].parentNode.removeChild(lst2.options[i-1]);
}
}
fonction SelectOne()
{
var lst1=window.document.getElementById("SourceListBox");
var lstindex=lst1.selectedIndex;
si(lstindex<0)
retour;
var v = lst1.options[lstindex].value;
var t = lst1.options[lstindex].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[lst2.options.length] = nouvelle Option(t,v,true,true);
}
fonction DelOne()
{
var lst2=window.document.getElementById("DestinationListBox");
var lstindex=lst2.selectedIndex;
si(lstindex>=0)
{
var v = lst2.options[lstindex].value+";";
lst2.options[lstindex].parentNode.removeChild(lst2.options[lstindex]);
}
}