分享

Asp.net实例教程-js操作listbox

 素行 2007-03-16
 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]);
   }
  
   }

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多