选择人员或者部门或其他时,经常会用到2个listbox,下面这js代码,希望能给大家以及自己带来方便
función SeleccionarTodo()
{
var lst1=window.document.getElementById("SourceListBox");
longitud var = lst1.opciones.longitud;
para(var i=0;i<longitud;i++)
{
var v = lst1.opciones[i].valor;
var t = lst1.opciones[i].texto;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[i] = nueva Opción(t,v,true,true);
}
}
función DelAll()
{
var lst2=window.document.getElementById("DestinationListBox");
longitud var = lst2.opciones.longitud;
para(var i=longitud;i>0;i--)
{
lst2.options[i-1].parentNode.removeChild(lst2.options[i-1]);
}
}
función SeleccionarUno()
{
var lst1=window.document.getElementById("SourceListBox");
var lstindex=lst1.selectedIndex;
si(lstindex<0)
devolver;
var v = lst1.opciones[lstindex].valor;
var t = lst1.options[lstindex].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[lst2.options.length] = nueva Opción(t,v,true,true);
}
función DelOne()
{
var lst2=window.document.getElementById("DestinationListBox");
var lstindex=lst2.selectedIndex;
si(lstindex>=0)
{
var v = lst2.options[lstindex].valor+";";
lst2.options[lstindex].parentNode.removeChild(lst2.options[lstindex]);
}
}