تم إنشاء مربع القائمة من خلال 2 من مربعات القائمة، و 2 من مربعات القائمة، و 2 من ملفات js، و 1 من سلاسل الملفات
الدالة تحديد الكل ()
{
var lst1=window.document.getElementById("SourceListBox");
طول فار = lst1.options.length;
ل(فار ط=0;أنا<الطول;i++)
{
var v = lst1.options[i].value;
var t = lst1.options[i].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[i] = new Option(t,v,true,true);
}
}
الدالة ديلال ()
{
var lst2=window.document.getElementById("DestinationListBox");
طول فار = lst2.options.length;
ل(فار ط=طول;i>0;i--)
{
lst2.options[i-1].parentNode.removeChild(lst2.options[i-1]);
}
}
الدالة SelectOne()
{
var lst1=window.document.getElementById("SourceListBox");
var lstindex=lst1.selectedIndex;
إذا (لستيندكس <0)
يعود؛
var v = lst1.options[lstindex].value;
var t = lst1.options[lstindex].text;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[lst2.options.length] = خيار جديد(t,v,true,true);
}
الدالة ديلون ()
{
var lst2=window.document.getElementById("DestinationListBox");
var lstindex=lst2.selectedIndex;
إذا (لستيندكس>=0)
{
var v = lst2.options[lstindex].value+";";
lst2.options[lstindex].parentNode.removeChild(lst2.options[lstindex]);
}
}