熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

用Javascript實現ListBox的增或者是刪[2]

2022-06-13   來源: JSP教程 

  刪除lbRight裡的項

  function del()
  {
   right=documentgetElementById(lbRight);
   for(i=rightlength;i>=;i)
   {
    if(rightoptions[i]selected)
    {
     rightremove(i);
    }
   }
   //重新賦值
   for(j=;j<rightlength;j++)
   {
    documentgetElementById(txtAllName)value+=rightoptions[j]text+;
    documentgetElementById(txtAllID)value+=rightoptions[j]value+;
   }
  }

[]  []  


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20666.html
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.