• 转帖 javascript操作listbox方法


    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]);
                }
                   
            }

     

  • 相关阅读:
    ASP.NET动态加载用户控件的页面生成过程
    简单的flash与asp.net通信(LoadVars类)
    转 推荐两本FLASH RIA应用开发方面的书籍
    关于代码加密解密保护
    转 利用 SharpZipLib方便地压缩和解压缩文件
    在C#中应用哈希表(Hashtable)
    C#中解析并运行一个本地命令行
    About Windows Live Writer
    安装sql server 2008,提示要删除SQL Server 2005 Express 工具,可我根本没装
    [转] C#中的null
  • 原文地址:https://www.cnblogs.com/umlzhang/p/1958863.html
Copyright © 2020-2023  润新知