国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

js操作listbox

2019-11-18 16:52:20
字體:
來源:轉載
供稿:網友

選擇人員或者部門或其他時,經常會用到2個listbox,下面這js代碼,希望能給大家以及自己帶來方便


function SelectAll()
        {
            var lst1=window.document.getElementById("SourceListBox");
            var length = lst1.options.length;
            for(var i=0;i<length;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);   
            }
           
        }
       
        function DelAll()
        {
            var lst2=window.document.getElementById("DestinationListBox");
            var length = lst2.options.length;
            for(var i=length;i>0;i--)
            {
                lst2.options[i-1].parentNode.removeChild(lst2.options[i-1]);
            }   
        }
       
        function SelectOne()
        {
            var lst1=window.document.getElementById("SourceListBox");
            var lstindex=lst1.selectedIndex;
            if(lstindex<0)
                return;
            var v = lst1.options[lstindex].value;
            var t = lst1.options[lstindex].text;
            var lst2=window.document.getElementById("DestinationListBox");
            lst2.options[lst2.options.length] = new Option(t,v,true,true);   
               
        }
       
        function DelOne()
        {
            var lst2=window.document.getElementById("DestinationListBox");
            var lstindex=lst2.selectedIndex;
            if(lstindex>=0)
            {
                var v = lst2.options[lstindex].value+";";
                lst2.options[lstindex].parentNode.removeChild(lst2.options[lstindex]);
            }
               
        }


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 且末县| 衡南县| 浠水县| 嘉义市| 汉阴县| 祁连县| 泗洪县| 洛浦县| 榆中县| 沾益县| 聂荣县| 丽江市| 太白县| 昭通市| 南康市| 全椒县| 林西县| 安图县| 孟连| 普安县| 蕉岭县| 丰台区| 剑河县| 石林| 鹰潭市| 偃师市| 秦安县| 湖州市| 方城县| 永德县| 商洛市| 庆阳市| 井研县| 拜泉县| 科技| 大荔县| 南和县| 远安县| 宝丰县| 天等县| 武隆县|