selectAdd.js
上传用户:gzy2002
上传日期:2010-02-11
资源大小:1785k
文件大小:1k
源码类别:

电子政务应用

开发平台:

Java

  1. function addElement(inputname, selectname) {
  2. // get the field objects
  3. var input = document.getElementById(eval('inputname')); 
  4. var select = document.getElementById(eval('selectname')); 
  5. // add element
  6. select.options[select.options.length] = new Option(input.value, input.value);
  7. input.value = '';
  8. }
  9. function removeFrom(inputname, selectname) {
  10. // get the field objects
  11. var input = document.getElementById(eval('inputname')); 
  12. var select = document.getElementById(eval('selectname')); 
  13. if (select.selectedIndex == -1) {
  14. alert("Please select an item to remove");
  15. return false;
  16. }
  17. for (i=select.options.length - 1;i>=0; i--) { 
  18.    if (select.options[i].selected) { 
  19.    select.options[i] = null; 
  20.    } 
  21.    } 
  22. }
  23. function selectSubmit(selectname) {
  24. // select all the fields
  25. var select = document.getElementById(eval('selectname')); 
  26. for (i=select.options.length - 1;i>=0; i--) { 
  27.    select.options[i].selected = true;
  28.    } 
  29. }