选择人员或者部门或其他时,经常会用到2个listbox,下的这js代码,希望能给大家以及自己带来方便
ฟังก์ชั่น SelectAll()
-
var lst1=window.document.getElementById("SourceListBox");
ความยาว var = lst1.options.length;
สำหรับ(var i=0;i<length;i++)
-
var v = lst1.options[i].value;
var t = lst1.options[i].ข้อความ;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[i] = ตัวเลือกใหม่ (t,v,true,true);
-
-
ฟังก์ชั่น DelAll()
-
var lst2=window.document.getElementById("DestinationListBox");
ความยาว var = lst2.options.length;
สำหรับ(var i=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;
ถ้า(lstindex<0)
กลับ;
var v = lst1.options[lstindex].value;
var t = lst1.options[lstindex].ข้อความ;
var lst2=window.document.getElementById("DestinationListBox");
lst2.options[lst2.options.length] = ตัวเลือกใหม่ (t,v,true,true);
-
ฟังก์ชั่น DelOne()
-
var lst2=window.document.getElementById("DestinationListBox");
var lstindex=lst2.selectedIndex;
ถ้า(lstindex>=0)
-
var v = lst2.options[lstindex].value+";";
lst2.options[lstindex].parentNode.removeChild(lst2.options[lstindex]);
-
-